*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
/* =========================================================
   THE CHEFS HOWICK HEADER
========================================================= */

:root{
  --ch-black:#050505;
  --ch-deep:#0c0c0c;
  --ch-white:#ffffff;
  --ch-soft:#d7d7d7;
  --ch-yellow:#f5dd32;
  --ch-yellow-dark:#ddc516;
  --ch-line:rgba(255,255,255,.12);
}


/* ----------------------------------
   BASIC
---------------------------------- */

.chefHowickHeader,
.chefHowickHeader *,
.chefHowickMenu,
.chefHowickMenu *{
  box-sizing:border-box;
}

.chefHowickHeader{
  position: relative;
  left:0;
  top:0;
  width:100%;
  z-index:9999;
  font-family:"Montserrat", sans-serif;
  background: rgb(0 0 0);
  color:var(--ch-white);
  transition:
    background .4s ease,
    box-shadow .4s ease,
    transform .4s ease;
  border-bottom: 1px solid rgba(245,221,50,.22);
}


/* scrolled state */

.chefHowickHeader.chefHowickHeader--scrolled{
  background:rgba(3,3,3,.97);
  box-shadow:
    0 15px 45px rgba(0,0,0,.24);
}



/* =========================================================
   TOP STRIP
========================================================= */

.chefHowickHeader__top{
  height:30px;
  border-bottom:1px solid rgba(245,221,50,.17);
  overflow:hidden;
}

.chefHowickHeader__topInner{
  width:min(1380px,94%);
  height:100%;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  font-size:10px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}

.chefHowickHeader__mini{
  display:flex;
  align-items:center;
  gap:7px;

  color:rgba(255,255,255,.6);
}

.chefHowickHeader__mini i{
  color:var(--ch-yellow);
  font-size:13px;
}

.chefHowickHeader__tag{
  color:var(--ch-yellow);
}



/* =========================================================
   DESKTOP SHELL
========================================================= */

.chefHowickHeader__shell{
  position:relative;

  width:min(1500px,96%);
  min-height:112px;

  margin:auto;

  display:flex;
  align-items:center;
  justify-content:center;
}


/* ============================================
   NAVIGATION - SPLIT AROUND CENTER LOGO
============================================ */

.chefHowickHeader__nav{
  width:100%;

  display:grid;
  grid-template-columns:1fr 190px 1fr;
  align-items:center;
  gap:34px;
}


.chefHowickHeader__navGroup{
  display:flex;
  align-items:center;
  gap: clamp(32px,6.5vw,75px);
}


.chefHowickHeader__navGroup--left{
  justify-content:flex-end;
}


.chefHowickHeader__navGroup--right{
  justify-content:flex-start;
}


/* links */

.chefHowickHeader__link{
  position:relative;

  display:flex;
  align-items:center;

  min-height:42px;

  color:#fff;
  text-decoration:none;

  font-size:12px;
  font-weight:600;
  letter-spacing:1.7px;
  text-transform:uppercase;

  transition:
    color .3s ease,
    transform .3s ease;
}


.chefHowickHeader__link span{
  position:relative;
  z-index:2;
}


.chefHowickHeader__link::after{
  content:"";

  position:absolute;
  left:0;
  bottom:5px;

  width:0;
  height:2px;

  background:var(--ch-yellow);

  transition:width .35s cubic-bezier(.2,.7,.3,1);
}


.chefHowickHeader__link:hover,
.chefHowickHeader__link.chef-active{
  color:var(--ch-yellow);
}


.chefHowickHeader__link:hover::after,
.chefHowickHeader__link.chef-active::after{
  width:100%;
}



/* =========================================================
   CENTER LOGO
========================================================= */

.chefHowickHeader__brand{
  position:relative;

  width:190px;
  height:112px;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
}


.chefHowickHeader__brandFrame{
  width:168px;
  height:96px;

  padding:7px 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-left:1px solid rgba(245,221,50,.22);
  border-right:1px solid rgba(245,221,50,.22);

  transition:
    transform .35s ease,
    border-color .35s ease;
}


.chefHowickHeader__brand:hover .chefHowickHeader__brandFrame{
  transform:translateY(-3px);

  border-color:rgba(245,221,50,.75);
}


.chefHowickHeader__logo{
  display:block;

  max-width:100%;
  max-height:84px;

  object-fit:contain;
}



/* =========================================================
   ORDER BUTTON
========================================================= */

.chefHowickHeader__orderWrap{
  position:absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
}


.chefHowickHeader__order{
  position:relative;

  height:48px;

  padding:0 7px 0 21px;

  display:flex;
  align-items:center;
  gap:17px;

  background:var(--ch-yellow);

  color:#090909;
  text-decoration:none;

  font-size:11px;
  font-weight:700;
  letter-spacing:1.3px;
  text-transform:uppercase;

  overflow:hidden;

  transition:
    transform .25s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.chefHowickHeader__order::before{
  content:"";

  position:absolute;
  inset:0;

  background:#fff;

  transform:translateX(-105%);
  transition:transform .4s cubic-bezier(.7,0,.2,1);
}


.chefHowickHeader__order:hover::before{
  transform:translateX(0);
}


.chefHowickHeader__order > *{
  position:relative;
  z-index:2;
}


.chefHowickHeader__orderIcon{
  width:36px;
  height:36px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#050505;
  color:#fff;

  font-size:17px;

  transition:transform .35s ease;
}


.chefHowickHeader__order:hover .chefHowickHeader__orderIcon{
  transform:rotate(45deg);
}



/* =========================================================
   MOBILE BAR
========================================================= */

.chefHowickMobile{
  display:none;
}



/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.chefHowickMenu{
  position:fixed;
  inset:0;

  z-index:10000;

  visibility:hidden;
  pointer-events:none;
}


.chefHowickMenu.is-open{
  visibility:visible;
  pointer-events:auto;
}


.chefHowickMenu__backdrop{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,.68);

  opacity:0;

  transition:opacity .45s ease;
}


.chefHowickMenu.is-open .chefHowickMenu__backdrop{
  opacity:1;
}


.chefHowickMenu__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(480px,100%);
  height:100%;
  padding:20px 28px 30px;
  display:flex;
  flex-direction:column;
  background: #000000;
  transform:translateX(102%);
  transition:
    transform .58s cubic-bezier(.75,0,.15,1);
}


.chefHowickMenu.is-open .chefHowickMenu__panel{
  transform:translateX(0);
}



/* mobile head */

.chefHowickMenu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding-bottom:18px;

  border-bottom:1px solid rgba(255,255,255,.11);
}


.chefHowickMenu__logo{
  width:116px;
}


.chefHowickMenu__logo img{
  width:100%;
  display:block;
}


.chefHowickMenu__close{
  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;

  background:transparent;

  color:#fff;

  font-size:26px;

  cursor:pointer;

  transition:
    background .3s ease,
    color .3s ease,
    transform .35s ease;
}


.chefHowickMenu__close:hover{
  background:var(--ch-yellow);
  color:#050505;

  transform:rotate(90deg);
}



/* menu caption */

.chefHowickMenu__caption{
  display:flex;
  align-items:center;
  gap:10px;

  margin:28px 0 16px;

  color:var(--ch-yellow);

  font-size:10px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}


.chefHowickMenu__caption span{
  width:28px;
  height:1px;
  background:var(--ch-yellow);
}



/* mobile links */

.chefHowickMenu__navigation{
  width:100%;
}


.chefHowickMenu__link{
  position:relative;

  width:100%;

  display:grid;
  grid-template-columns:42px 1fr 35px;
  align-items:center;

  padding:15px 0;

  color:#fff;
  text-decoration:none;

  border-bottom:1px solid rgba(255,255,255,.095);

  overflow:hidden;
}


.chefHowickMenu__number{
  color:rgba(255,255,255,.32);

  font-size:10px;
  font-weight:600;
}


.chefHowickMenu__text{
  font-size:clamp(27px,7vw,37px);
  line-height:1;
}


.chefHowickMenu__link i{
  color:var(--ch-yellow);

  font-size:19px;

  transform:translateX(0);

  transition:transform .3s ease;
}


.chefHowickMenu__link:hover{
  color:var(--ch-yellow);
}


.chefHowickMenu__link:hover i{
  transform:translate(4px,-4px);
}



/* initial animation */

.chefHowickMenu__link{
  opacity:0;
  transform:translateX(24px);

  transition:
    opacity .35s ease,
    transform .45s ease,
    color .3s ease;
}


.chefHowickMenu.is-open .chefHowickMenu__link{
  opacity:1;
  transform:translateX(0);
}


.chefHowickMenu.is-open .chefHowickMenu__link:nth-child(1){
  transition-delay:.13s;
}

.chefHowickMenu.is-open .chefHowickMenu__link:nth-child(2){
  transition-delay:.17s;
}

.chefHowickMenu.is-open .chefHowickMenu__link:nth-child(3){
  transition-delay:.21s;
}

.chefHowickMenu.is-open .chefHowickMenu__link:nth-child(4){
  transition-delay:.25s;
}

.chefHowickMenu.is-open .chefHowickMenu__link:nth-child(5){
  transition-delay:.29s;
}

.chefHowickMenu.is-open .chefHowickMenu__link:nth-child(6){
  transition-delay:.33s;
}



/* mobile order */

.chefHowickMenu__bottom{
  margin-top:auto;
  padding-top:26px;
}


.chefHowickMenu__order{
  min-height:60px;

  padding:7px 8px 7px 24px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  background:var(--ch-yellow);

  color:#050505;
  text-decoration:none;

  font-size:12px;
  font-weight:700;
  letter-spacing:1.7px;
  text-transform:uppercase;

  transition:
    background .3s ease,
    transform .3s ease;
}


.chefHowickMenu__order:hover{
  background:#fff;
  transform:translateY(-3px);
}


.chefHowickMenu__orderArrow{
  width:46px;
  height:46px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#050505;
  color:#fff;

  font-size:19px;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width:1280px){

  .chefHowickHeader__shell{
    width:97%;
  }

  .chefHowickHeader__nav{
    grid-template-columns:1fr 155px 1fr;
    gap:20px;
  }

  .chefHowickHeader__brand{
    width:155px;
  }

  .chefHowickHeader__brandFrame{
    width:145px;
  }

  .chefHowickHeader__navGroup{
    gap:22px;
  }

  .chefHowickHeader__link{
    font-size:10px;
    letter-spacing:1.1px;
  }

  .chefHowickHeader__order{
    padding-left:16px;
    gap:10px;
  }

}



/* =========================================================
   MOBILE BREAKPOINT
========================================================= */

@media (max-width:1050px){

  .chefHowickHeader__top,
  .chefHowickHeader__shell{
    display:none;
  }


  .chefHowickHeader{
    background:#050505;
  }


  .chefHowickMobile{
    height:82px;

    padding:0 22px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    border-bottom:1px solid rgba(245,221,50,.17);
  }


  .chefHowickMobile__brand{
    width:112px;

    display:block;
  }


  .chefHowickMobile__brand img{
    display:block;

    width:100%;
    max-height:65px;

    object-fit:contain;
  }


  .chefHowickMobile__toggle{
    position:relative;

    width:51px;
    height:51px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:7px;

    padding:0;

    background:var(--ch-yellow);

    border:0;

    cursor:pointer;
  }


  .chefHowickMobile__toggle span{
    width:22px;
    height:2px;

    display:block;

    background:#050505;

    transition:
      width .3s ease,
      transform .3s ease;
  }


  .chefHowickMobile__toggle span:nth-child(2){
    width:15px;
    margin-left:7px;
  }


  .chefHowickMobile__toggle:hover span:nth-child(2){
    width:22px;
    margin-left:0;
  }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:575px){

  .chefHowickMobile{
    height:74px;
    padding:0 15px;
  }


  .chefHowickMobile__brand{
    width:102px;
  }


  .chefHowickMobile__toggle{
    width:46px;
    height:46px;
  }


  .chefHowickMenu__panel{
    padding:16px 20px 24px;
  }


  .chefHowickMenu__logo{
    width:103px;
  }


  .chefHowickMenu__close{
    width:44px;
    height:44px;

    font-size:24px;
  }


  .chefHowickMenu__caption{
    margin-top:23px;
  }


  .chefHowickMenu__link{
    padding:14px 0;

    grid-template-columns:36px 1fr 30px;
  }


  .chefHowickMenu__text{
    font-size:28px;
  }


  .chefHowickMenu__order{
    min-height:56px;
  }

}



/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width:370px){

  .chefHowickMenu__text{
    font-size:25px;
  }

  .chefHowickMenu__link{
    padding:12px 0;
  }

}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

  .chefHowickHeader *,
  .chefHowickMenu *{
    animation:none !important;
    transition:none !important;
  }

}
.chefHowickHeader__mini a{
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}

.chefHowickHeader__mini a:hover{
  color: var(--ch-yellow);
}
/* =====================================================
   ROOT
===================================================== */

:root{
  --cv-black:#050505;
  --cv-dark:#101010;
  --cv-yellow:#f4dd35;
  --cv-white:#ffffff;
  --cv-soft:#c8c8c8;
  --cv-line:rgba(255,255,255,.16);
}


.chefVistaHero,
.chefVistaHero *{
  box-sizing:border-box;
}


.chefVistaHero{
  width:100%;
  min-height:100vh;
  padding: 90px 0 100px;
  background: #000000;
  color:#fff;
  overflow:hidden;
  font-family:"Montserrat",sans-serif;
}


.chefVistaHero__wrap{
  width:min(1500px,94%);
  margin:auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.chefVistaHero__top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding-bottom:18px;

  border-bottom:1px solid var(--cv-line);
}


.chefVistaHero__eyebrow{
  display:flex;
  align-items:center;
  gap:10px;

  color:#d8d8d8;

  font-size:10px;
  font-weight:600;
  letter-spacing:2.2px;
  text-transform:uppercase;
}


.chefVistaHero__eyebrow i{
  color:var(--cv-yellow);
  font-size:17px;
}


.chefVistaHero__actions{
  display:flex;
  align-items:center;
  gap:25px;
}


.chefVistaHero__topLink{
  display:flex;
  align-items:center;
  gap:8px;

  color:#fff;

  text-decoration:none;

  font-size:10px;
  font-weight:600;
  letter-spacing:1.4px;
  text-transform:uppercase;

  transition:color .3s ease;
}


.chefVistaHero__topLink i{
  color:var(--cv-yellow);
  font-size: 11px;
}


.chefVistaHero__topLink:hover{
  color:var(--cv-yellow);
}


/* =====================================================
   TITLE
===================================================== */

.chefVistaHero__headline{
  position:relative;

  padding:37px 0 31px;

  display:flex;
  align-items:flex-end;
}


.chefVistaHero__headline h1{
  margin:0;
  font-size: clamp(70px,6.2vw,132px);
  line-height:.75;
  letter-spacing:-5px;
  color:#fff;
  transition:
    opacity .3s ease,
    transform .45s ease;
  font-weight: 300;
  text-transform: uppercase;
}


.chefVistaHero__script{
  margin-right:27px;
  margin-bottom:6px;
  color:var(--cv-yellow);
  font-family:"Allura",cursive;
  font-size: 60px;
  line-height:1;
  transition:
    opacity .3s ease,
    transform .4s ease;
}


/* =====================================================
   EXPANDING GALLERY
===================================================== */

.chefVistaHero__gallery{
  display:flex;

  width:100%;
  height:clamp(410px,42vw,610px);

  gap:10px;
}


.chefVistaHero__panel{
  position:relative;

  flex:1;

  height:100%;

  overflow:hidden;

  background:#111;

  cursor:pointer;

  border:1px solid rgba(255,255,255,.12);

  transition:
    flex .85s cubic-bezier(.22,.75,.2,1),
    opacity .45s ease;
}


.chefVistaHero__panel.is-active{
  flex:2.25;
}


.chefVistaHero__panel img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transform:scale(1.03);

  transition:
    transform 1.2s cubic-bezier(.2,.75,.2,1),
    filter .5s ease;
}


.chefVistaHero__panel:not(.is-active) img{
  filter:brightness(.6);
}


.chefVistaHero__panel.is-active img{
  transform:scale(1.08);
}


.chefVistaHero__panel:hover img{
  transform:scale(1.1);
}


/* only tiny index on image */

.chefVistaHero__index{
  position:absolute;

  left:15px;
  bottom:15px;

  width:42px;
  height:42px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:#050505;

  color:var(--cv-yellow);

  font-size:10px;
  font-weight:700;
  letter-spacing:1px;

  border:1px solid rgba(255,255,255,.17);
}


/* =====================================================
   BOTTOM AREA
===================================================== */

.chefVistaHero__bottom{
  padding-top:27px;

  display:grid;
  grid-template-columns:1.35fr .65fr auto;

  align-items:center;

  gap:45px;
}


/* DESCRIPTION */

.chefVistaHero__description{
  display:grid;
  grid-template-columns:110px 1fr;

  gap:25px;
}


.chefVistaHero__smallTitle{
  padding-top:5px;

  color:var(--cv-yellow);

  font-size:9px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
}


.chefVistaHero__description p{
  max-width:590px;

  margin:0;

  color:var(--cv-soft);

  font-size:13px;
  line-height:1.8;

  transition:
    opacity .3s ease,
    transform .4s ease;
}


/* =====================================================
   PROGRESS
===================================================== */

.chefVistaHero__progress{
  display:flex;
  align-items:center;
  gap:12px;

  font-size:9px;
  font-weight:600;
  letter-spacing:1px;
}


.chefVistaHero__progress > span:first-child{
  color:var(--cv-yellow);
}


.chefVistaHero__progressTrack{
  position:relative;

  width:105px;
  height:1px;

  background:rgba(255,255,255,.22);

  overflow:hidden;
}


.chefVistaHero__progressTrack span{
  display:block;

  width:0;
  height:100%;

  background:var(--cv-yellow);
}


.chefVistaHero__progressTrack span.is-running{
  animation:chefVistaProgress 5.5s linear forwards;
}


@keyframes chefVistaProgress{
  from{
    width:0;
  }

  to{
    width:100%;
  }
}


/* =====================================================
   BUTTONS
===================================================== */

.chefVistaHero__nav{
  display:flex;
  align-items:center;
}


.chefVistaHero__control{
  width:54px;
  height:54px;

  padding:0;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#050505;
  color:#fff;

  border:1px solid rgba(255,255,255,.18);

  font-size:18px;

  cursor:pointer;

  transition:
    background .3s ease,
    color .3s ease;
}


.chefVistaHero__control:hover{
  background:var(--cv-yellow);
  color:#050505;
}


.chefVistaHero__cta{
  height:54px;

  padding:0 18px 0 22px;

  display:flex;
  align-items:center;
  gap:20px;

  background:var(--cv-yellow);

  color:#050505;

  text-decoration:none;

  font-size:10px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;

  transition:
    background .3s ease,
    transform .3s ease;
}


.chefVistaHero__cta i{
  font-size:18px;

  transition:transform .3s ease;
}


.chefVistaHero__cta:hover{
  background:#fff;
}


.chefVistaHero__cta:hover i{
  transform:translate(3px,-3px);
}


/* =====================================================
   REVEAL
===================================================== */

.chefVistaHero__top,
.chefVistaHero__headline,
.chefVistaHero__gallery,
.chefVistaHero__bottom{
  opacity:0;
  transform:translateY(25px);

  transition:
    opacity .7s ease,
    transform .75s ease;
}


.chefVistaHero.hero-visible .chefVistaHero__top{
  opacity:1;
  transform:none;
}


.chefVistaHero.hero-visible .chefVistaHero__headline{
  opacity:1;
  transform:none;

  transition-delay:.1s;
}


.chefVistaHero.hero-visible .chefVistaHero__gallery{
  opacity:1;
  transform:none;

  transition-delay:.2s;
}


.chefVistaHero.hero-visible .chefVistaHero__bottom{
  opacity:1;
  transform:none;

  transition-delay:.3s;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1050px){

  .chefVistaHero{
    padding-top:140px;
  }


  .chefVistaHero__bottom{
    grid-template-columns:1fr auto;
  }


  .chefVistaHero__description{
    grid-column:1 / -1;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

  .chefVistaHero{
    min-height:auto;
    padding: 100px 0 40px;
  }


  .chefVistaHero__wrap{
    width:calc(100% - 28px);
  }


  .chefVistaHero__top{
    align-items:flex-start;
  }


  .chefVistaHero__actions{
    display:none;
  }


  .chefVistaHero__headline{
    display:block;

    padding:29px 0 24px;
  }


  .chefVistaHero__script{
    margin: 0 0px 5px 0px;
    font-size:40px;
  }


  .chefVistaHero__headline h1{
    font-size:clamp(54px,17vw,83px);
    letter-spacing:-3px;
    line-height:.82;
  }


  /* gallery becomes horizontal slider */

  .chefVistaHero__gallery{
    height:470px;

    display:flex;

    gap:8px;

    overflow:hidden;
  }


  .chefVistaHero__panel{
    min-width:52px;

    flex:.18;
  }


  .chefVistaHero__panel.is-active{
    flex:1;
  }


  .chefVistaHero__index{
    width:36px;
    height:36px;

    left:9px;
    bottom:9px;
  }


  .chefVistaHero__bottom{
    display:flex;
    flex-direction:column;
    align-items:stretch;

    gap:23px;

    padding-top:23px;
  }


  .chefVistaHero__description{
    display:block;
  }


  .chefVistaHero__smallTitle{
    display:block;

    margin-bottom:10px;
  }


  .chefVistaHero__description p{
    font-size:12.5px;
  }


  .chefVistaHero__progress{
    justify-content:center;
  }


  .chefVistaHero__nav{
    width:100%;
  }


  .chefVistaHero__control{
    flex:0 0 52px;
  }


  .chefVistaHero__cta{
    flex:1;

    justify-content:space-between;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

  .chefVistaHero{
    padding-top: 35px;
  }


  .chefVistaHero__gallery{
    height:415px;
  }


  .chefVistaHero__headline h1{
    font-size: 38px;
  }


  .chefVistaHero__script{
    font-size: 46px;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media(prefers-reduced-motion:reduce){

  .chefVistaHero *,
  .chefVistaHero *::before,
  .chefVistaHero *::after{
    animation:none !important;
    transition:none !important;
  }

}

/* =========================================================
   VARIABLES
========================================================= */

:root{
  --hs-bg:#f3efd7;
  --hs-black:#090909;
  --hs-yellow:#e3c91e;
  --hs-yellow-dark:#c8ae08;
  --hs-text:#3c3a31;
  --hs-muted:#6e6a5b;
  --hs-line:rgba(9,9,9,.18);
  --hs-white:#fff;
}


/* =========================================================
   SECTION
========================================================= */

.howickStory,
.howickStory *{
  box-sizing:border-box;
}


.howickStory{
  position:relative;
  width:100%;
  padding: 120px 0 100px;
  background:#f3efd7;
  color:var(--hs-black);
  overflow:hidden;
  font-family:"Montserrat",sans-serif;
}


.howickStory__container{
  width:min(1480px,92%);
  margin:auto;

  display:grid;

  grid-template-columns:
    minmax(250px,.82fr)
    minmax(430px,1.25fr)
    minmax(250px,.82fr);

  gap:clamp(35px,5vw,80px);

  align-items:center;
}


/* =========================================================
   IMAGE COLUMNS
========================================================= */

.howickStory__media{
  position:relative;

  width:100%;
}


.howickStory__media--one{
  align-self:start;

  margin-top:55px;
}


.howickStory__media--two{
  align-self:end;

  margin-bottom:55px;
}


.howickStory__imageBox{
  position:relative;

  width:100%;
  height:630px;

  overflow:hidden;

  background:#ded8bb;
}


.howickStory__media--two .howickStory__imageBox{
  height:520px;
}


.howickStory__image{
  width:100%;
  height:112%;

  display:block;

  object-fit:cover;

  transform:translateY(-6%);

  transition:
    transform .85s cubic-bezier(.2,.7,.2,1),
    filter .45s ease;
}


.howickStory__imageBox:hover .howickStory__image{
  transform:translateY(-6%) scale(1.045);
}


/* =========================================================
   IMAGE CAPTIONS
========================================================= */

.howickStory__mediaCaption{
  margin-top:16px;

  display:flex;
  align-items:center;

  gap:13px;
}


.howickStory__mediaCaption--top{
  margin-top:0;
  margin-bottom:16px;
}


.howickStory__mediaCaption span{
  color:var(--hs-yellow-dark);

  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
}


.howickStory__mediaCaption p{
  margin:0;

  color:var(--hs-black);

  font-size:9px;
  font-weight:700;

  letter-spacing:1.8px;
  text-transform:uppercase;
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.howickStory__content{
  position:relative;

  text-align:center;
}


.howickStory__eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:10px;

  margin-bottom:27px;

  color:#5f5a46;

  font-size:10px;
  font-weight:700;

  letter-spacing:2.2px;

  text-transform:uppercase;
}


.howickStory__eyebrow i{
  color:#b79f00;

  font-size:18px;
}


/* =========================================================
   HEADING
========================================================= */

.howickStory__headingBox{
  position:relative;

  display:inline-block;
}


.howickStory__script{
  display:block;
  margin: 0 0px 5px 0px;
  color:#b69d00;
  font-family:"Allura",cursive;
  font-size: 50px;
  line-height:1;
}


.howickStory__headingBox h2{
  margin:0;
  color:var(--hs-black);
  font-size: clamp(65px,5vw,105px);
  font-weight: 300;
  line-height:.84;
  letter-spacing:-4px;
  text-transform: uppercase;
}


/* divider */

.howickStory__divider{
  width:62px;
  height:2px;

  margin:36px auto;

  background:var(--hs-yellow-dark);
}


/* =========================================================
   TEXT
========================================================= */

.howickStory__lead{
  max-width:630px;
  margin:
    0 auto 26px;
  color:var(--hs-black);
  font-size:26px;
  font-weight: 500;
}


.howickStory__text{
  max-width:650px;
  margin:
    0 auto 18px;
  color: #010101;
  font-size:13px;
  font-weight:400;
  line-height:1.9;
}


/* =========================================================
   FEATURES
========================================================= */

.howickStory__features{
  max-width:610px;

  margin:34px auto;

  padding:
    23px 0;

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:20px;

  border-top:1px solid var(--hs-line);
  border-bottom:1px solid var(--hs-line);
}


.howickStory__feature{
  display:flex;
  align-items:center;
  gap:14px;
  text-align: center;
  justify-content: center;
}


.howickStory__feature + .howickStory__feature{
  padding-left:22px;

  border-left:1px solid var(--hs-line);
}


.howickStory__feature i{
  flex:0 0 auto;

  color:#9c8700;

  font-size:27px;
}


.howickStory__feature strong{
  display:block;
  margin-bottom:4px;
  color:var(--hs-black);
  font-size:18px;
  font-weight: 500;
}


.howickStory__feature span{
  display:block;

  color:var(--hs-muted);

  font-size:9px;
  font-weight:600;

  letter-spacing:.8px;
  text-transform:uppercase;
}


/* =========================================================
   BUTTON
========================================================= */

.howickStory__button{
  min-width:215px;
  height:58px;

  margin-top:5px;

  padding-left:24px;

  display:inline-flex;

  align-items:center;
  justify-content:space-between;

  background:var(--hs-black);

  color:#fff;

  text-decoration:none;

  font-size:10px;
  font-weight:700;

  letter-spacing:1.4px;

  text-transform:uppercase;

  overflow:hidden;

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}


.howickStory__button i{
  width:58px;
  height:58px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-left:22px;

  background:var(--hs-yellow);

  color:#090909;

  font-size:20px;

  transition:
    background .3s ease,
    transform .35s ease;
}


.howickStory__button:hover{
  background:#29271f;

  transform:translateY(-4px);

  box-shadow:
    0 13px 25px rgba(0,0,0,.12);
}


.howickStory__button:hover i{
  background:#fff;

  transform:rotate(45deg);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

[data-story-reveal]{
  opacity:0;

  transform:translateY(45px);

  transition:
    opacity .85s ease,
    transform .9s
    cubic-bezier(.18,.72,.2,1);
}


[data-story-reveal].is-visible{
  opacity:1;

  transform:translateY(0);
}


.howickStory__media--one.is-visible{
  transition-delay:.05s;
}


.howickStory__content.is-visible{
  transition-delay:.17s;
}


.howickStory__media--two.is-visible{
  transition-delay:.3s;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media(max-width:1200px){

  .howickStory{
    padding:100px 0;
  }


  .howickStory__container{
    grid-template-columns:
      .75fr
      1.25fr
      .75fr;

    gap:35px;
  }


  .howickStory__imageBox{
    height:550px;
  }


  .howickStory__media--two
  .howickStory__imageBox{
    height:460px;
  }


  .howickStory__headingBox h2{
    font-size:72px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

  .howickStory{
    padding:85px 0;
  }


  .howickStory__container{
    grid-template-columns:
      repeat(2,1fr);

    gap:30px;
  }


  .howickStory__content{
    grid-column:1 / -1;

    grid-row:1;

    max-width:720px;

    margin:auto;
  }


  .howickStory__media--one{
    grid-column:1;

    grid-row:2;

    margin-top:15px;
  }


  .howickStory__media--two{
    grid-column:2;

    grid-row:2;

    margin:70px 0 0;
  }


  .howickStory__imageBox,
  .howickStory__media--two
  .howickStory__imageBox{
    height:520px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){

  .howickStory{
    padding:70px 0;
  }


  .howickStory__container{
    width:calc(100% - 30px);

    display:flex;

    flex-direction:column;

    gap:35px;
  }


  .howickStory__content{
    order: 2;
    width:100%;
  }


  .howickStory__media--one{
    order: 1;
    width:100%;
    margin:5px 0 0;
  }


  .howickStory__media--two{
    order:3;

    width:100%;

    margin:0;
  }


  .howickStory__eyebrow{
    margin-bottom:22px;

    font-size:8px;

    letter-spacing:1.7px;
  }


  .howickStory__script{
    font-size:43px;
  }


  .howickStory__headingBox h2{
    font-size:60px;

    letter-spacing:-3px;
  }


  .howickStory__divider{
    margin:27px auto;
  }


  .howickStory__lead{
    font-size:22px;
  }


  .howickStory__text{
    font-size:12.5px;

    line-height:1.85;
  }


  .howickStory__features{
    margin:27px auto;

    grid-template-columns:1fr;

    gap:18px;
  }


  .howickStory__feature + .howickStory__feature{
    padding:
      18px 0 0;

    border-left:0;

    border-top:1px solid var(--hs-line);
  }


  .howickStory__button{
    width:100%;
  }


  .howickStory__imageBox,
  .howickStory__media--two
  .howickStory__imageBox{
    height:470px;
  }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media(max-width:420px){

  .howickStory{
    padding: 70px 0;
  }


  .howickStory__headingBox h2{
    font-size: 48px;
  }


  .howickStory__script{
    font-size: 40px;
  }


  .howickStory__imageBox,
  .howickStory__media--two
  .howickStory__imageBox{
    height:410px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media(prefers-reduced-motion:reduce){

  .howickStory *,
  .howickStory *::before,
  .howickStory *::after{
    animation:none !important;
    transition:none !important;
  }


  [data-story-reveal]{
    opacity:1;
    transform:none;
  }

}
/* =====================================================
   NEW ABOUT CTA BUTTON
===================================================== */

.howickStory__buttonNew{
  position:relative;

  min-width:245px;
  height:62px;

  margin-top:8px;

  padding:0 8px 0 23px;

  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  border:1px solid rgba(9,9,9,.75);

  background:transparent;
  color:var(--hs-black);

  text-decoration:none;

  font-family:"Montserrat",sans-serif;
  font-size:10px;
  font-weight:700;

  letter-spacing:1.8px;
  text-transform:uppercase;

  overflow:hidden;

  transition:
    color .35s ease,
    border-color .35s ease,
    transform .3s ease;
}


/* yellow detail */
.howickStory__buttonNew::after{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:4px;
  height:100%;

  background:var(--hs-yellow);

  transition:
    width .45s cubic-bezier(.2,.7,.2,1);
}


/* content above hover layer */
.howickStory__buttonNewText,
.howickStory__buttonNewIcon{
  position:relative;
  z-index:2;
}


/* text */
.howickStory__buttonNewText{
  transition:
    transform .35s ease,
    color .35s ease;
}


/* icon box */
.howickStory__buttonNewIcon{
  width:46px;
  height:46px;

  flex:0 0 46px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--hs-black);
  color:#fff;

  font-size:18px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .4s ease;
}


/* hover */
.howickStory__buttonNew:hover{
  color:#fff;

  border-color:var(--hs-black);
}


.howickStory__buttonNew:hover::after{
  width:100%;

  background:var(--hs-black);
}


.howickStory__buttonNew:hover
.howickStory__buttonNewText{
  transform:translateX(5px);
}


.howickStory__buttonNew:hover
.howickStory__buttonNewIcon{
  background:var(--hs-yellow);
  color:#090909;

  transform:translateX(-3px);
}


/* keyboard accessibility */
.howickStory__buttonNew:focus-visible{
  outline:2px solid var(--hs-yellow-dark);
  outline-offset:4px;
}


/* mobile */
@media(max-width:650px){

  .howickStory__buttonNew{
    width:100%;
    min-width:0;

    height:60px;

    padding-left:20px;
  }

}


/* small mobile */
@media(max-width:420px){

  .howickStory__buttonNew{
    font-size:9px;
    letter-spacing:1.3px;
  }


  .howickStory__buttonNewIcon{
    width:44px;
    height:44px;

    flex-basis:44px;
  }

}
/* =========================================
   NEW HEADER ORDER ONLINE BUTTON
========================================= */

.chefHowickHeader__orderNew{
  position:relative;

  min-width:190px;
  height:50px;

  padding:0 6px 0 18px;

  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  background:transparent;

  border:1px solid rgba(245,221,50,.75);

  color:#fff;
  text-decoration:none;

  font-family:"Montserrat",sans-serif;
  font-size:10px;
  font-weight:700;

  letter-spacing:1.5px;
  text-transform:uppercase;

  overflow:hidden;

  transition:
    color .35s ease,
    border-color .35s ease,
    transform .3s ease;
}


/* yellow left detail */

.chefHowickHeader__orderNew::after{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:4px;
  height:100%;

  background:var(--ch-yellow);

  transition:
    width .42s cubic-bezier(.2,.7,.2,1);
}


/* keep content above hover fill */

.chefHowickHeader__orderNewText,
.chefHowickHeader__orderNewIcon{
  position:relative;
  z-index:2;
}


/* text */

.chefHowickHeader__orderNewText{
  transition:
    transform .35s ease,
    color .35s ease;
}


/* icon */

.chefHowickHeader__orderNewIcon{
  width:38px;
  height:38px;

  flex:0 0 38px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--ch-yellow);
  color:#050505;

  font-size:16px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .4s ease;
}


/* hover */

.chefHowickHeader__orderNew:hover{
  color:#050505;

  border-color:var(--ch-yellow);
}


.chefHowickHeader__orderNew:hover::after{
  width:100%;
}


.chefHowickHeader__orderNew:hover
.chefHowickHeader__orderNewText{
  transform:translateX(4px);
}


.chefHowickHeader__orderNew:hover
.chefHowickHeader__orderNewIcon{
  background:#050505;
  color:#fff;

  transform:translateX(-3px);
}


/* focus */

.chefHowickHeader__orderNew:focus-visible{
  outline:2px solid var(--ch-yellow);
  outline-offset:4px;
}


/* tablet */

@media(max-width:1280px){

  .chefHowickHeader__orderNew{
    min-width:165px;

    padding-left:14px;

    gap:10px;

    font-size:9px;
    letter-spacing:1.1px;
  }

}


/* mobile - if you use this button anywhere */

@media(max-width:1050px){

  .chefHowickHeader__orderNew{
    width:100%;
    min-width:0;

    height:56px;

    padding-left:20px;
  }

}
/* =========================================================
   KIA ORA FUSION MENU JOURNAL
   NO GRADIENTS
   NO TICKER
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */

:root{
  --cml-bg:#17130f;
  --cml-bg-soft:#211b14;
  --cml-yellow:#f1d832;
  --cml-yellow-dark:#d4bd20;
  --cml-white:#fff;
  --cml-text:#d8d2c5;
  --cml-muted:#928b7e;
  --cml-line:rgba(255,255,255,.14);
}


/* =========================================================
   BASE
========================================================= */

.chefMenuLedger,
.chefMenuLedger *{
  box-sizing:border-box;
}


.chefMenuLedger{
  position:relative;
  width:100%;
  padding: 120px 0 100px;
  overflow:hidden;
  background:#17130f;
  color:#fff;
  font-family:"Montserrat",sans-serif;
}


.chefMenuLedger__wrap{
  width:min(1480px,92%);

  margin:auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.chefMenuLedger__head{
  padding-bottom:60px;

  display:grid;

  grid-template-columns:1.35fr .65fr;

  gap:70px;

  align-items:end;

  border-bottom:1px solid var(--cml-line);
}


.chefMenuLedger__eyebrow{
  display:flex;

  align-items:center;

  gap:10px;

  margin-bottom:25px;

  color:#cac3b6;

  font-size:10px;
  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;
}


.chefMenuLedger__eyebrow i{
  color:var(--cml-yellow);

  font-size:17px;
}


/* title */

.chefMenuLedger__titleBox{
  display:flex;

  align-items:flex-end;

  gap:23px;
}


.chefMenuLedger__script{
  margin-bottom:8px;
  color:var(--cml-yellow);
  font-family:"Allura",cursive;
  font-size: 50px;
  line-height:1;
  transform:rotate(-5deg);
}


.chefMenuLedger__titleBox h2{
  margin:0;
  color:#fff;
  font-size: clamp(74px,5vw,118px);
  font-weight: 300;
  line-height:.76;
  letter-spacing:-4px;
  text-transform: uppercase;
}


/* right intro */

.chefMenuLedger__small{
  display:block;

  margin-bottom:15px;

  color:var(--cml-yellow);

  font-size:9px;
  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;
}


.chefMenuLedger__headCopy p{
  max-width:430px;

  margin:0;

  color:var(--cml-text);

  font-size:13px;

  line-height:1.85;
}


/* =========================================================
   CATEGORY ROW
========================================================= */

.chefMenuLedger__row{
  position:relative;

  min-height:340px;

  padding:38px 0;

  display:grid;

  grid-template-columns:
    60px
    minmax(210px,.85fr)
    minmax(360px,1.35fr)
    minmax(250px,.9fr);

  gap:clamp(25px,3.4vw,58px);

  align-items:center;

  border-bottom:1px solid var(--cml-line);
}


/* number */

.chefMenuLedger__number{
  align-self:start;

  padding-top:10px;
}


.chefMenuLedger__number span{
  color:var(--cml-yellow);

  font-family:"Cormorant Garamond",serif;

  font-size:19px;
  font-weight:600;

  letter-spacing:1px;
}


/* category title */

.chefMenuLedger__name{
  position:relative;
}


.chefMenuLedger__label{
  display:block;

  margin-bottom:14px;

  color:var(--cml-muted);

  font-size:8px;
  font-weight:700;

  letter-spacing:1.7px;

  text-transform:uppercase;
}


.chefMenuLedger__name h3{
  margin:0;
  color:#fff;
  font-size: clamp(43px,2.2vw,67px);
  line-height:.9;
  font-weight: 300;
  letter-spacing:-2px;
  transition:
    color .35s ease,
    transform .35s ease;
  text-transform: uppercase;
}


/* =========================================================
   IMAGE
========================================================= */

.chefMenuLedger__visual{
  position:relative;

  display:block;

  width:100%;
  height:265px;

  overflow:hidden;

  background:#261f17;

  text-decoration:none;
}


.chefMenuLedger__visual img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transform:scale(1.03);

  transition:
    transform .75s cubic-bezier(.2,.7,.2,1),
    filter .4s ease;
}


.chefMenuLedger__row:hover
.chefMenuLedger__visual img{
  transform:scale(1.085);
}


/* small floating icon */

.chefMenuLedger__imageAction{
  position:absolute;

  right:12px;
  bottom:12px;

  width:43px;
  height:43px;

  display:flex;

  align-items:center;
  justify-content:center;

  background:#17130f;

  color:var(--cml-yellow);

  font-size:18px;

  transition:
    background .3s ease,
    color .3s ease,
    transform .35s ease;
}


.chefMenuLedger__visual:hover
.chefMenuLedger__imageAction{
  background:var(--cml-yellow);

  color:#17130f;

  transform:rotate(45deg);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.chefMenuLedger__details{
  max-width:350px;
}


.chefMenuLedger__details p{
  margin:0 0 24px;

  color:var(--cml-text);

  font-size:12.5px;

  line-height:1.85;
}


/* =========================================================
   MENU CTA
========================================================= */

.chefMenuLedger__button{
  position:relative;

  min-height:45px;

  display:inline-flex;

  align-items:center;

  gap:18px;

  color:#fff;

  text-decoration:none;

  font-size:9px;
  font-weight:700;

  letter-spacing:1.6px;

  text-transform:uppercase;
}


.chefMenuLedger__button::before{
  content:"";

  width:32px;
  height:1px;

  background:var(--cml-yellow);

  transition:width .35s ease;
}


.chefMenuLedger__button i{
  color:var(--cml-yellow);

  font-size:17px;

  transition:transform .35s ease;
}


.chefMenuLedger__button:hover::before{
  width:47px;
}


.chefMenuLedger__button:hover i{
  transform:translateX(5px);
}


/* =========================================================
   REVERSE ROW
========================================================= */

.chefMenuLedger__row--reverse{
  grid-template-columns:
    60px
    minmax(250px,.9fr)
    minmax(360px,1.35fr)
    minmax(210px,.85fr);
}


.chefMenuLedger__row--reverse
.chefMenuLedger__name{
  grid-column:4;

  grid-row:1;

  text-align:right;
}


.chefMenuLedger__row--reverse
.chefMenuLedger__visual{
  grid-column:3;

  grid-row:1;
}


.chefMenuLedger__row--reverse
.chefMenuLedger__details{
  grid-column:2;

  grid-row:1;

  text-align:right;
}


.chefMenuLedger__row--reverse
.chefMenuLedger__number{
  grid-column:1;

  grid-row:1;
}


.chefMenuLedger__row--reverse
.chefMenuLedger__button{
  flex-direction:row-reverse;
}


.chefMenuLedger__row--reverse
.chefMenuLedger__button i{
  transform:rotate(180deg);
}


.chefMenuLedger__row--reverse
.chefMenuLedger__button:hover i{
  transform:
    rotate(180deg)
    translateX(5px);
}


/* row title interaction */

.chefMenuLedger__row:hover
.chefMenuLedger__name h3{
  color:var(--cml-yellow);

  transform:translateY(-4px);
}


/* =========================================================
   BOTTOM FULL MENU
========================================================= */

.chefMenuLedger__footer{
  padding-top:35px;

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:20px;
}


.chefMenuLedger__footer > span{
  color:var(--cml-muted);

  font-size:9px;
  font-weight:600;

  letter-spacing:1.7px;

  text-transform:uppercase;
}


.chefMenuLedger__footer a{
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--cml-yellow);
  text-decoration:none;
  font-size:24px;
  font-weight: 300;
  transition:color .3s ease;
  text-transform: uppercase;
}


.chefMenuLedger__footer a i{
  font-size:20px;

  transition:transform .35s ease;
}


.chefMenuLedger__footer a:hover{
  color:#fff;
}


.chefMenuLedger__footer a:hover i{
  transform:
    translate(4px,-4px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

[data-ledger-reveal]{
  opacity:0;

  transform:translateY(42px);

  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.18,.72,.2,1);
}


[data-ledger-reveal].is-visible{
  opacity:1;

  transform:translateY(0);
}


/* stagger rows */

.chefMenuLedger__row:nth-of-type(1){
  transition-delay:.04s;
}

.chefMenuLedger__row:nth-of-type(2){
  transition-delay:.09s;
}

.chefMenuLedger__row:nth-of-type(3){
  transition-delay:.14s;
}

.chefMenuLedger__row:nth-of-type(4){
  transition-delay:.19s;
}


/* =========================================================
   LAPTOP
========================================================= */

@media(max-width:1200px){

  .chefMenuLedger{
    padding:100px 0;
  }


  .chefMenuLedger__row,
  .chefMenuLedger__row--reverse{
    grid-template-columns:
      45px
      .75fr
      1.15fr
      .9fr;

    gap:28px;
  }


  .chefMenuLedger__visual{
    height:235px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

  .chefMenuLedger{
    padding:85px 0;
  }


  .chefMenuLedger__head{
    grid-template-columns:1fr;

    gap:35px;

    padding-bottom:45px;
  }


  .chefMenuLedger__headCopy p{
    max-width:650px;
  }


  .chefMenuLedger__row,
  .chefMenuLedger__row--reverse{
    min-height:0;

    padding:40px 0;

    grid-template-columns:42px 1fr 1fr;

    gap:25px;
  }


  .chefMenuLedger__number,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__number{
    grid-column:1;

    grid-row:1;
  }


  .chefMenuLedger__name,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__name{
    grid-column:2 / -1;

    grid-row:1;

    text-align:left;
  }


  .chefMenuLedger__visual,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__visual{
    grid-column:1 / 3;

    grid-row:2;

    height:300px;
  }


  .chefMenuLedger__details,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__details{
    grid-column:3;

    grid-row:2;

    align-self:center;

    text-align:left;
  }


  .chefMenuLedger__row--reverse
  .chefMenuLedger__button{
    flex-direction:row;
  }


  .chefMenuLedger__row--reverse
  .chefMenuLedger__button i{
    transform:none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){

  .chefMenuLedger{
    padding:70px 0;
  }


  .chefMenuLedger__wrap{
    width:calc(100% - 30px);
  }


  .chefMenuLedger__titleBox{
    display:block;
  }


  .chefMenuLedger__script{
    margin: 0 0px 5px 0px;
    font-size: 40px;
  }


  .chefMenuLedger__titleBox h2{
    font-size:64px;

    letter-spacing:-3px;
  }


  .chefMenuLedger__row,
  .chefMenuLedger__row--reverse{
    display:grid;

    grid-template-columns:38px 1fr;

    gap:18px;

    padding:34px 0;
  }


  .chefMenuLedger__number,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__number{
    grid-column:1;

    grid-row:1;
  }


  .chefMenuLedger__name,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__name{
    grid-column:2;

    grid-row:1;

    text-align:left;
  }


  .chefMenuLedger__name h3{
    font-size:45px;
  }


  .chefMenuLedger__visual,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__visual{
    grid-column:1 / -1;

    grid-row:2;

    height:280px;
  }


  .chefMenuLedger__details,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__details{
    grid-column:1 / -1;

    grid-row:3;

    max-width:none;

    text-align:left;
  }


  .chefMenuLedger__details p{
    margin-bottom:15px;
  }


  .chefMenuLedger__footer{
    align-items:flex-start;

    flex-direction:column;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:420px){

  .chefMenuLedger{
    padding: 70px 0;
  }


  .chefMenuLedger__titleBox h2{
    font-size: 48px;
  }


  .chefMenuLedger__visual,
  .chefMenuLedger__row--reverse
  .chefMenuLedger__visual{
    height:240px;
  }


  .chefMenuLedger__name h3{
    font-size:39px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .chefMenuLedger *,
  .chefMenuLedger *::before,
  .chefMenuLedger *::after{
    animation:none !important;
    transition:none !important;
  }


  [data-ledger-reveal]{
    opacity:1;
    transform:none;
  }

}
/* =========================================================
   VARIABLES
========================================================= */

:root{
  --cr-bg:#d8cc55;
  --cr-black:#0d0d0c;
  --cr-dark:#1d1c17;
  --cr-dark-soft:#29271f;
  --cr-yellow:#f4de32;
  --cr-cream:#fffce7;
  --cr-white:#ffffff;
  --cr-line:rgba(13,13,12,.25);
  --cr-light-line:rgba(255,255,255,.16);
}


/* =========================================================
   BASE
========================================================= */

.chefsReserveDesk,
.chefsReserveDesk *{
  box-sizing:border-box;
}


.chefsReserveDesk{
  position:relative;
  width:100%;
  padding: 120px 0 100px;
  overflow:hidden;
  background:#d8cc55;
  color:var(--cr-black);
  font-family:"Montserrat",sans-serif;
}


.chefsReserveDesk__container{
  width:min(1460px,92%);
  margin:auto;
}


/* =========================================================
   INTRO
========================================================= */

.chefsReserveDesk__intro{
  padding-bottom:52px;

  border-bottom:1px solid var(--cr-line);
}


.chefsReserveDesk__eyebrow{
  display:flex;
  align-items:center;

  gap:12px;

  margin-bottom:30px;

  color:#35321d;

  font-size:9px;
  font-weight:700;

  letter-spacing:2.2px;

  text-transform:uppercase;
}


.chefsReserveDesk__eyebrowLine{
  width:42px;
  height:1px;

  display:block;

  background:var(--cr-black);
}


.chefsReserveDesk__eyebrow i{
  margin-left:2px;

  font-size:17px;
}


.chefsReserveDesk__headingArea{
  display:grid;

  grid-template-columns:
    minmax(500px,1.4fr)
    minmax(260px,.6fr);

  gap:80px;

  align-items:end;
}


/* =========================================================
   HEADING
========================================================= */

.chefsReserveDesk__heading{
  position:relative;

  display:inline-block;
}


.chefsReserveDesk__script{
  display:block;
  margin: 0 0px 5px 0px;
  color:#4c461c;
  font-family:"Allura",cursive;
  font-size: 50px;
  line-height:1;
}


.chefsReserveDesk__heading h2{
  margin:0;
  color:var(--cr-black);
  font-size: clamp(72px,5vw,125px);
  font-weight: 300;
  line-height:.78;
  letter-spacing:-5px;
  text-transform: uppercase;
}


.chefsReserveDesk__introCopy{
  padding-bottom:3px;
}


.chefsReserveDesk__introCopy p{
  max-width:440px;

  margin:0;

  color:#37341f;

  font-size:13px;
  line-height:1.9;
}


/* =========================================================
   BOOKING WRAPPER
========================================================= */

.chefsReserveDesk__booking{
  display:grid;

  grid-template-columns:
    285px
    minmax(0,1fr);

  margin-top:55px;

  background:var(--cr-dark);
}


/* =========================================================
   LEFT RAIL
========================================================= */

.chefsReserveDesk__rail{
  min-height:650px;

  padding:34px 30px;

  display:flex;
  flex-direction:column;

  background:#29271f;

  color:#fff;

  border-right:1px solid rgba(255,255,255,.13);
}


.chefsReserveDesk__railTop{
  padding-bottom:31px;

  border-bottom:1px solid var(--cr-light-line);
}


.chefsReserveDesk__railIndex{
  display:inline-flex;

  margin-bottom:17px;

  color:var(--cr-yellow);

  font-size:10px;
  font-weight:700;

  letter-spacing:2px;
}


.chefsReserveDesk__railTop p{
  margin:0;
  color:#fff;
  font-size:32px;
  font-weight: 300;
  line-height:1.05;
}


/* rail details */

.chefsReserveDesk__railInfo{
  padding:35px 0;

  display:flex;
  flex-direction:column;

  gap:29px;
}


.chefsReserveDesk__infoItem{
  display:flex;
  align-items:center;

  gap:14px;
}


.chefsReserveDesk__infoIcon{
  width:41px;
  height:41px;

  flex:0 0 41px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(244,222,50,.38);

  color:var(--cr-yellow);

  font-size:18px;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}


.chefsReserveDesk__infoItem:hover
.chefsReserveDesk__infoIcon{
  background:var(--cr-yellow);

  color:var(--cr-black);

  transform:translateY(-3px);
}


.chefsReserveDesk__infoItem small{
  display:block;

  margin-bottom:4px;

  color:#aaa693;

  font-size:8px;
  font-weight:600;

  letter-spacing:1.4px;

  text-transform:uppercase;
}


.chefsReserveDesk__infoItem strong{
  display:block;
  color:#fff;
  font-size: 16px;
  font-weight: 300;
}


/* rail footer */

.chefsReserveDesk__railBottom{
  margin-top:auto;

  padding-top:25px;

  border-top:1px solid var(--cr-light-line);
}


.chefsReserveDesk__railBottom span{
  display:block;

  margin-bottom:12px;

  color:var(--cr-yellow);

  font-size:30px;
  font-weight:600;

  font-family:"Cormorant Garamond",serif;
}


.chefsReserveDesk__railBottom p{
  margin:0;

  color:#b8b4a3;

  font-size:10px;

  line-height:1.7;
}


/* =========================================================
   FORM AREA
========================================================= */

.chefsReserveDesk__formArea{
  min-width:0;
  padding:30px;
  background: #ffffff;
}


.chefsReserveDesk__formHead{
  min-height:76px;

  display:flex;
  align-items:flex-start;
  justify-content:space-between;

  gap:20px;

  padding-bottom:24px;

  border-bottom:1px solid rgba(13,13,12,.16);
}


.chefsReserveDesk__formLabel{
  display:block;

  margin-bottom:5px;

  color:#847516;

  font-size:8px;
  font-weight:700;

  letter-spacing:1.8px;

  text-transform:uppercase;
}


.chefsReserveDesk__formHead h3{
  margin:0;
  color:#15140e;
  font-size:32px;
  font-weight:600;
}


.chefsReserveDesk__secure{
  display:flex;
  align-items:center;

  gap:7px;

  padding-top:10px;

  color:#5f5a39;

  font-size:8px;
  font-weight:700;

  letter-spacing:1.2px;

  text-transform:uppercase;
}


.chefsReserveDesk__secure i{
  color:#9b8611;

  font-size:17px;
}


/* =========================================================
   IFRAME
========================================================= */

.chefsReserveDesk__iframeWrap{
  position:relative;

  width:100%;

  margin-top:20px;

  overflow:hidden;

  background:#fff;
}


.chefsReserveDesk__iframeWrap iframe{
  width:100% !important;

  min-height:450px;

  display:block;

  border:0;

  background:#fff;
}


/* =========================================================
   FORM FOOTER
========================================================= */

.chefsReserveDesk__formFooter{
  padding-top:18px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  border-top:1px solid rgba(13,13,12,.13);

  color:#656146;

  font-size:8px;
  font-weight:600;

  letter-spacing:.7px;
}


.chefsReserveDesk__formFooter > span:first-child{
  display:flex;

  align-items:center;

  gap:7px;
}


.chefsReserveDesk__formFooter i{
  color:#9b8611;

  font-size:15px;
}


.chefsReserveDesk__formFooterRight{
  color:#191811;

  font-weight:700;

  letter-spacing:1.4px;

  text-transform:uppercase;
}


/* =========================================================
   BOTTOM
========================================================= */

.chefsReserveDesk__bottom{
  padding-top:35px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:35px;
}


.chefsReserveDesk__bottomTitle{
  display:flex;

  align-items:flex-start;

  gap:15px;
}


.chefsReserveDesk__bottomTitle > i{
  color:#403b19;

  font-size:24px;
}


.chefsReserveDesk__bottomTitle p{
  margin:0;
  color:#37331b;
  font-size:23px;
  line-height:1.3;
}


.chefsReserveDesk__bottomTitle strong{
  color:var(--cr-black);
  font-weight: 600;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.chefsReserveDesk__menuLink{
  position:relative;

  min-width:220px;
  height:58px;

  padding:0 7px 0 22px;

  display:inline-flex;
  align-items:center;
  justify-content:space-between;

  gap:22px;

  background:transparent;

  border:1px solid rgba(13,13,12,.65);

  color:var(--cr-black);

  text-decoration:none;

  font-size:9px;
  font-weight:700;

  letter-spacing:1.5px;

  text-transform:uppercase;

  overflow:hidden;

  transition:
    color .35s ease,
    transform .3s ease;
}


.chefsReserveDesk__menuLink::before{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:4px;
  height:100%;

  background:var(--cr-black);

  transition:
    width .45s cubic-bezier(.2,.7,.2,1);
}


.chefsReserveDesk__menuLink > *{
  position:relative;
  z-index:2;
}


.chefsReserveDesk__menuIcon{
  width:44px;
  height:44px;

  flex:0 0 44px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--cr-black);

  color:var(--cr-yellow);

  font-size:18px;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}


.chefsReserveDesk__menuLink:hover{
  color:#fff;

  transform:translateY(-3px);
}


.chefsReserveDesk__menuLink:hover::before{
  width:100%;
}


.chefsReserveDesk__menuLink:hover
.chefsReserveDesk__menuIcon{
  background:var(--cr-yellow);

  color:var(--cr-black);

  transform:translateX(-3px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

[data-reserve-reveal]{
  opacity:0;

  transform:translateY(45px);

  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.2,.7,.2,1);
}


[data-reserve-reveal].is-visible{
  opacity:1;

  transform:translateY(0);
}


.chefsReserveDesk__booking.is-visible{
  transition-delay:.12s;
}


.chefsReserveDesk__bottom.is-visible{
  transition-delay:.22s;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1050px){

  .chefsReserveDesk{
    padding:95px 0;
  }


  .chefsReserveDesk__headingArea{
    grid-template-columns:1fr;

    gap:28px;
  }


  .chefsReserveDesk__introCopy p{
    max-width:600px;
  }


  .chefsReserveDesk__booking{
    grid-template-columns:230px minmax(0,1fr);
  }


  .chefsReserveDesk__rail{
    padding:28px 22px;
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media(max-width:800px){

  .chefsReserveDesk__booking{
    display:block;
  }


  .chefsReserveDesk__rail{
    min-height:auto;

    display:grid;

    grid-template-columns:1fr 2fr;

    gap:30px;

    padding:27px;
  }


  .chefsReserveDesk__railTop{
    border-bottom:0;
    border-right:1px solid var(--cr-light-line);

    padding:0 25px 0 0;
  }


  .chefsReserveDesk__railInfo{
    padding:0;

    display:grid;

    grid-template-columns:
      repeat(3,1fr);

    gap:15px;
  }


  .chefsReserveDesk__infoItem{
    display:block;
  }


  .chefsReserveDesk__infoIcon{
    margin-bottom:10px;
  }


  .chefsReserveDesk__railBottom{
    grid-column:1 / -1;

    margin-top:0;
  }


  .chefsReserveDesk__bottom{
    align-items:flex-start;

    flex-direction:column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

  .chefsReserveDesk{
    padding:70px 0;
  }


  .chefsReserveDesk__container{
    width:calc(100% - 30px);
  }


  .chefsReserveDesk__intro{
    padding-bottom:38px;
  }


  .chefsReserveDesk__eyebrow{
    font-size:8px;

    letter-spacing:1.5px;
  }


  .chefsReserveDesk__eyebrowLine{
    width:25px;
  }


  .chefsReserveDesk__script{
    font-size: 40px;
  }


  .chefsReserveDesk__heading h2{
    font-size: 48px;
    letter-spacing: 0px;
  }


  .chefsReserveDesk__introCopy p{
    font-size:12px;

    line-height:1.8;
  }


  .chefsReserveDesk__booking{
    margin-top:35px;
  }


  /* mobile rail */

  .chefsReserveDesk__rail{
    display:block;

    padding:25px 20px;
  }


  .chefsReserveDesk__railTop{
    padding:0 0 21px;

    border-right:0;
    border-bottom:1px solid var(--cr-light-line);
  }


  .chefsReserveDesk__railTop p{
    font-size: 24px;
  }


  .chefsReserveDesk__railInfo{
    margin-top:23px;

    grid-template-columns:1fr;

    gap:20px;
  }


  .chefsReserveDesk__infoItem{
    display:flex;
  }


  .chefsReserveDesk__infoIcon{
    margin-bottom:0;
  }


  .chefsReserveDesk__railBottom{
    margin-top:24px;
  }


  /* iframe */

  .chefsReserveDesk__formArea{
    padding:22px 15px;
  }


  .chefsReserveDesk__formHead{
    display:block;
  }


  .chefsReserveDesk__secure{
    margin-top:13px;

    padding-top:0;
  }


  .chefsReserveDesk__formHead h3{
    font-size:27px;
  }


  .chefsReserveDesk__iframeWrap{
    margin-top:15px;
  }


  .chefsReserveDesk__iframeWrap iframe{
    min-height:500px;
  }


  .chefsReserveDesk__formFooter{
    align-items:flex-start;

    flex-direction:column;
  }


  .chefsReserveDesk__bottomTitle p{
    font-size:20px;
  }


  .chefsReserveDesk__menuLink{
    width:100%;
  }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media(max-width:390px){

  .chefsReserveDesk__heading h2{
    font-size:57px;
  }


  .chefsReserveDesk__script{
    font-size:37px;
  }


  .chefsReserveDesk__formArea{
    padding:18px 10px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .chefsReserveDesk *,
  .chefsReserveDesk *::before,
  .chefsReserveDesk *::after{
    animation:none !important;
    transition:none !important;
  }


  [data-reserve-reveal]{
    opacity:1;
    transform:none;
  }

}
/* =========================================================
   VARIABLES
========================================================= */

:root{
  --crt-bg:#2c291f;
  --crt-bg-light:#373329;
  --crt-yellow:#f2d92f;
  --crt-yellow-soft:#cbb925;
  --crt-white:#ffffff;
  --crt-text:#d3cfc1;
  --crt-muted:#928e80;
  --crt-line:rgba(255,255,255,.14);
}


/* =========================================================
   BASE
========================================================= */

.chefReviewTheatre,
.chefReviewTheatre *{
  box-sizing:border-box;
}


.chefReviewTheatre{
  position:relative;

  width:100%;

  padding:120px 0 100px;

  overflow:hidden;

  background:#2c291f;

  color:#fff;

  font-family:"Montserrat",sans-serif;
}


.chefReviewTheatre__container{
  width:min(1460px,92%);
  margin:auto;
}


/* =========================================================
   INTRO
========================================================= */

.chefReviewTheatre__intro{
  max-width:830px;

  margin:0 auto 68px;

  text-align:center;
}


.chefReviewTheatre__eyebrow{
  display:flex;
  justify-content:center;
  align-items:center;

  gap:10px;

  margin-bottom:22px;

  color:var(--crt-yellow);

  font-size:9px;
  font-weight:700;

  letter-spacing:2.2px;
  text-transform:uppercase;
}


.chefReviewTheatre__eyebrow i{
  font-size:18px;
}


.chefReviewTheatre__headingWrap{
  position:relative;

  display:inline-block;
}


.chefReviewTheatre__script{
  display:block;
  color:var(--crt-yellow);
  font-family:"Allura",cursive;
  font-size: 50px;
  line-height:1;
  margin: 0 0px 5px 0px;
}


.chefReviewTheatre__headingWrap h2{
  margin:0;
  color:#fff;
  font-size: clamp(70px,5vw,112px);
  font-weight: 300;
  line-height:.8;
  letter-spacing: 0px;
  text-transform: uppercase;
}


.chefReviewTheatre__introText{
  max-width:600px;

  margin:32px auto 0;

  color:var(--crt-text);

  font-size:13px;

  line-height:1.9;
}


/* =========================================================
   STAGE
========================================================= */

.chefReviewTheatre__stage{
  min-height:550px;

  display:grid;

  grid-template-columns:
    260px
    minmax(400px,1fr)
    220px;

  border-top:1px solid var(--crt-line);
  border-bottom:1px solid var(--crt-line);
}


/* =========================================================
   PEOPLE SELECTOR
========================================================= */

.chefReviewTheatre__people{
  padding:48px 32px 48px 0;

  display:flex;
  flex-direction:column;
  justify-content:center;

  border-right:1px solid var(--crt-line);
}


.chefReviewTheatre__person{
  width:100%;

  padding:22px 0;

  display:grid;

  grid-template-columns:
    36px
    1fr
    24px;

  align-items:center;

  gap:10px;

  border:0;
  border-bottom:1px solid var(--crt-line);

  background:transparent;

  color:#fff;

  text-align:left;

  cursor:pointer;

  transition:
    opacity .3s ease,
    transform .35s ease;
}


.chefReviewTheatre__person:first-child{
  border-top:1px solid var(--crt-line);
}


.chefReviewTheatre__personNumber{
  color:var(--crt-muted);

  font-size:9px;
  font-weight:700;

  letter-spacing:1px;
}


.chefReviewTheatre__personInfo strong{
  display:block;
  margin-bottom:5px;
  color:#fff;
  font-size:21px;
  font-weight: 400;
}


.chefReviewTheatre__personInfo small{
  display:block;

  color:var(--crt-muted);

  font-size:8px;
  font-weight:600;

  letter-spacing:1.2px;

  text-transform:uppercase;
}


.chefReviewTheatre__person i{
  color:var(--crt-yellow);

  font-size:17px;

  opacity:0;

  transform:translateX(-8px);

  transition:
    opacity .3s ease,
    transform .3s ease;
}


.chefReviewTheatre__person:hover,
.chefReviewTheatre__person.is-active{
  transform:translateX(7px);
}


.chefReviewTheatre__person.is-active
.chefReviewTheatre__personNumber{
  color:var(--crt-yellow);
}


.chefReviewTheatre__person:hover i,
.chefReviewTheatre__person.is-active i{
  opacity:1;

  transform:translateX(0);
}


/* =========================================================
   MAIN QUOTE
========================================================= */

.chefReviewTheatre__quoteArea{
  position:relative;

  min-width:0;

  padding:70px clamp(40px,6vw,95px);

  display:flex;
  flex-direction:column;
  justify-content:center;
}


.chefReviewTheatre__quoteMark{
  margin-bottom:20px;

  color:var(--crt-yellow);

  font-size:42px;
  line-height:1;
}


.chefReviewTheatre__stars{
  display:flex;

  gap:5px;

  margin-bottom:27px;

  color:var(--crt-yellow);

  font-size:14px;
}


.chefReviewTheatre__quoteArea blockquote{
  max-width:850px;
  margin:0;
  color:#fff;
  font-size: clamp(29px,2.2vw,50px);
  font-weight: 400;
  line-height:1.3;
  letter-spacing:-1px;
  transition:
    opacity .3s ease,
    transform .4s ease;
}


.chefReviewTheatre__author{
  margin-top:40px;

  display:flex;
  align-items:center;

  gap:16px;

  transition:
    opacity .3s ease,
    transform .4s ease;
}


.chefReviewTheatre__authorLine{
  width:42px;
  height:1px;

  background:var(--crt-yellow);
}


.chefReviewTheatre__author strong{
  display:block;

  margin-bottom:4px;

  color:#fff;

  font-size:11px;
  font-weight:700;

  letter-spacing:1.5px;

  text-transform:uppercase;
}


.chefReviewTheatre__author div span{
  color:var(--crt-muted);

  font-size:8px;
  font-weight:600;

  letter-spacing:1.3px;

  text-transform:uppercase;
}


/* =========================================================
   STATUS
========================================================= */

.chefReviewTheatre__status{
  padding:45px 0 45px 32px;

  display:flex;
  flex-direction:column;

  border-left:1px solid var(--crt-line);
}


.chefReviewTheatre__statusTop{
  display:flex;

  align-items:flex-start;
  justify-content:space-between;

  gap:15px;
}


.chefReviewTheatre__statusLabel{
  color:var(--crt-muted);

  font-size:8px;
  font-weight:700;

  letter-spacing:1.5px;

  text-transform:uppercase;
}


.chefReviewTheatre__counter{
  display:flex;
  align-items:flex-end;

  gap:5px;
}


.chefReviewTheatre__counter strong{
  color:var(--crt-yellow);

  font-family:"Cormorant Garamond",serif;

  font-size:28px;
  font-weight:600;

  line-height:1;
}


.chefReviewTheatre__counter span,
.chefReviewTheatre__counter small{
  color:var(--crt-muted);

  font-size:9px;
}


/* progress */

.chefReviewTheatre__progress{
  width:100%;
  height:2px;

  margin-top:22px;

  background:rgba(255,255,255,.15);

  overflow:hidden;
}


.chefReviewTheatre__progress span{
  display:block;

  width:0;
  height:100%;

  background:var(--crt-yellow);
}


.chefReviewTheatre__progress span.is-running{
  animation:chefReviewProgress 6s linear forwards;
}


@keyframes chefReviewProgress{

  from{
    width:0;
  }

  to{
    width:100%;
  }

}


/* rating */

.chefReviewTheatre__rating{
  margin:auto 0;
}


.chefReviewTheatre__rating span{
  display:block;

  margin-bottom:7px;

  color:var(--crt-muted);

  font-size:8px;
  font-weight:700;

  letter-spacing:1.4px;

  text-transform:uppercase;
}


.chefReviewTheatre__rating strong{
  display:block;
  margin-bottom:5px;
  color:#fff;
  font-size:65px;
  font-weight:600;
  line-height:1;
}


.chefReviewTheatre__rating small{
  color:var(--crt-yellow-soft);

  font-size:8px;
  font-weight:600;

  letter-spacing:1px;

  text-transform:uppercase;
}


/* controls */

.chefReviewTheatre__controls{
  display:flex;

  margin-top:auto;
}


.chefReviewTheatre__controls button{
  width:48px;
  height:48px;

  padding:0;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid var(--crt-line);
  border-right:0;

  background:transparent;

  color:#fff;

  font-size:17px;

  cursor:pointer;

  transition:
    background .3s ease,
    color .3s ease;
}


.chefReviewTheatre__controls button:last-child{
  border-right:1px solid var(--crt-line);
}


.chefReviewTheatre__controls button:hover{
  background:var(--crt-yellow);

  color:#14130f;
}


/* =========================================================
   BOTTOM
========================================================= */

.chefReviewTheatre__bottom{
  padding-top:34px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:30px;
}


.chefReviewTheatre__bottomText{
  display:flex;
  align-items:center;

  gap:11px;

  color:var(--crt-text);

  font-size:10px;
  font-weight:600;

  letter-spacing:1.2px;

  text-transform:uppercase;
}


.chefReviewTheatre__bottomText i{
  color:var(--crt-yellow);

  font-size:19px;
}


/* =========================================================
   RESERVE BUTTON
========================================================= */

.chefReviewTheatre__reserve{
  position:relative;
  min-width:220px;
  height:58px;
  padding: 10px 7px 10px 20px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  border:1px solid var(--crt-yellow);
  background:transparent;
  color:#fff;
  text-decoration:none;
  font-size:9px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  overflow:hidden;
  transition:
    color .35s ease,
    transform .3s ease;
}


.chefReviewTheatre__reserve::before{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:4px;
  height:100%;

  background:var(--crt-yellow);

  transition:
    width .42s cubic-bezier(.2,.7,.2,1);
}


.chefReviewTheatre__reserve > *{
  position:relative;
  z-index:2;
}


.chefReviewTheatre__reserveIcon{
  width: 40px;
  height: 40px;
  flex:0 0 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--crt-yellow);
  color:#15140f;
  font-size:18px;
  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}


.chefReviewTheatre__reserve:hover{
  color:#17160f;

  transform:translateY(-3px);
}


.chefReviewTheatre__reserve:hover::before{
  width:100%;
}


.chefReviewTheatre__reserve:hover
.chefReviewTheatre__reserveIcon{
  background:#fff;

  transform:rotate(45deg);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

[data-chef-review-reveal]{
  opacity:0;

  transform:translateY(42px);

  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.18,.72,.2,1);
}


[data-chef-review-reveal].is-visible{
  opacity:1;

  transform:none;
}


.chefReviewTheatre__stage.is-visible{
  transition-delay:.12s;
}


.chefReviewTheatre__bottom.is-visible{
  transition-delay:.22s;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1050px){

  .chefReviewTheatre{
    padding:95px 0;
  }


  .chefReviewTheatre__stage{
    grid-template-columns:
      210px
      1fr;
  }


  .chefReviewTheatre__status{
    grid-column:1 / -1;

    min-height:auto;

    padding:25px 0;

    display:grid;

    grid-template-columns:
      1fr
      1fr
      auto;

    align-items:center;

    gap:30px;

    border-left:0;
    border-top:1px solid var(--crt-line);
  }


  .chefReviewTheatre__progress{
    display:none;
  }


  .chefReviewTheatre__rating{
    margin:0;

    text-align:center;
  }


  .chefReviewTheatre__rating strong{
    font-size:45px;
  }


  .chefReviewTheatre__controls{
    margin:0;
  }

}


/* =========================================================
   MOBILE TABLET
========================================================= */

@media(max-width:760px){

  .chefReviewTheatre__stage{
    display:flex;
    flex-direction:column;
  }


  .chefReviewTheatre__people{
    padding:0;

    display:grid;

    grid-template-columns:
      repeat(3,1fr);

    border-right:0;
    border-bottom:1px solid var(--crt-line);
  }


  .chefReviewTheatre__person{
    display:block;

    padding:16px 10px;

    text-align:center;

    border-bottom:0;
    border-right:1px solid var(--crt-line);
  }


  .chefReviewTheatre__person:first-child{
    border-top:0;
  }


  .chefReviewTheatre__person:last-child{
    border-right:0;
  }


  .chefReviewTheatre__person i{
    display:none;
  }


  .chefReviewTheatre__person:hover,
  .chefReviewTheatre__person.is-active{
    transform:none;

    background:var(--crt-bg-light);
  }


  .chefReviewTheatre__personNumber{
    display:block;

    margin-bottom:7px;
  }


  .chefReviewTheatre__personInfo strong{
    font-size:17px;
  }


  .chefReviewTheatre__personInfo small{
    font-size:7px;
  }


  .chefReviewTheatre__quoteArea{
    padding:55px 25px;
  }


  .chefReviewTheatre__quoteArea blockquote{
    font-size:32px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:575px){

  .chefReviewTheatre{
    padding:70px 0;
  }


  .chefReviewTheatre__container{
    width:calc(100% - 30px);
  }


  .chefReviewTheatre__intro{
    margin-bottom:45px;
  }


  .chefReviewTheatre__script{
    font-size: 40px;
    margin: 0 0px 5px 0px;
  }


  .chefReviewTheatre__headingWrap h2{
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 300;
  }


  .chefReviewTheatre__introText{
    font-size:12px;
  }


  .chefReviewTheatre__person{
    padding:14px 5px;
  }


  .chefReviewTheatre__personInfo strong{
    font-size:14px;
  }


  .chefReviewTheatre__personInfo small{
    display:none;
  }


  .chefReviewTheatre__quoteArea{
    padding:42px 5px;
  }


  .chefReviewTheatre__quoteMark{
    font-size:34px;
  }


  .chefReviewTheatre__quoteArea blockquote{
    font-size: 21px;
    line-height:1.35;
  }


  .chefReviewTheatre__author{
    margin-top:30px;
  }


  .chefReviewTheatre__status{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:25px;
  }


  .chefReviewTheatre__statusTop{
    width:100%;
  }


  .chefReviewTheatre__rating{
    text-align:left;
  }


  .chefReviewTheatre__bottom{
    align-items:flex-start;

    flex-direction:column;
  }


  .chefReviewTheatre__bottomText{
    line-height:1.7;
  }


  .chefReviewTheatre__reserve{
    width:100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:390px){

  .chefReviewTheatre__headingWrap h2{
    font-size:51px;
  }


  .chefReviewTheatre__script{
    font-size:36px;
  }


  .chefReviewTheatre__quoteArea blockquote{
    font-size:25px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .chefReviewTheatre *,
  .chefReviewTheatre *::before,
  .chefReviewTheatre *::after{
    animation:none !important;
    transition:none !important;
  }


  [data-chef-review-reveal]{
    opacity:1;
    transform:none;
  }

}
/* =========================================
   TESTIMONIAL RESERVE BUTTON
   Same style as Reservation Menu Button
========================================= */

.chefReviewTheatre__reserveNew{
  position:relative;

  min-width:220px;
  height:58px;

  padding:0 7px 0 22px;

  display:inline-flex;
  align-items:center;
  justify-content:space-between;

  gap:22px;

  background:transparent;

  border:1px solid var(--crt-yellow);

  color:#fff;
  text-decoration:none;

  font-family:"Montserrat",sans-serif;

  font-size:9px;
  font-weight:700;

  letter-spacing:1.5px;
  text-transform:uppercase;

  overflow:hidden;

  transition:
    color .35s ease,
    transform .3s ease,
    border-color .35s ease;
}


/* left fill strip */

.chefReviewTheatre__reserveNew::before{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:4px;
  height:100%;

  background:var(--crt-yellow);

  transition:
    width .45s cubic-bezier(.2,.7,.2,1);
}


/* keep content above fill */

.chefReviewTheatre__reserveNew > *{
  position:relative;
  z-index:2;
}


/* icon box */

.chefReviewTheatre__reserveNewIcon{
  width:44px;
  height:44px;

  flex:0 0 44px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--crt-yellow);
  color:#17160f;

  font-size:18px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}


/* hover */

.chefReviewTheatre__reserveNew:hover{
  color:#17160f;

  transform:translateY(-3px);
}


.chefReviewTheatre__reserveNew:hover::before{
  width:100%;
}


.chefReviewTheatre__reserveNew:hover
.chefReviewTheatre__reserveNewIcon{
  background:#fff;
  color:#17160f;

  transform:translateX(-3px);
}


/* focus */

.chefReviewTheatre__reserveNew:focus-visible{
  outline:2px solid var(--crt-yellow);
  outline-offset:4px;
}


/* mobile */

@media(max-width:575px){

  .chefReviewTheatre__reserveNew{
    width:100%;
    min-width:0;
  }

}

/* =========================================================
   VARIABLES
========================================================= */

:root{
  --cff-black:#000000;
  --cff-yellow:#f4dc32;
  --cff-yellow-soft:#cdbb2b;
  --cff-white:#ffffff;
  --cff-text:#b7b7b1;
  --cff-muted:#74746e;
  --cff-line:rgba(255,255,255,.15);
}


/* =========================================================
   BASE
========================================================= */

.chefFinalFooter,
.chefFinalFooter *{
  box-sizing:border-box;
}


.chefFinalFooter{
  position:relative;

  width:100%;

  padding:105px 0 28px;

  overflow:hidden;

  background:#000000;

  color:#ffffff;

  font-family:"Montserrat",sans-serif;
}


.chefFinalFooter__container{
  width:min(1460px,92%);
  margin:auto;
}


/* =========================================================
   TOP BRAND
========================================================= */

.chefFinalFooter__brandArea{
  max-width:800px;

  margin:0 auto 80px;

  text-align:center;
}


.chefFinalFooter__small{
  display:block;

  margin-bottom:22px;

  color:var(--cff-yellow);

  font-size:9px;
  font-weight:700;

  letter-spacing:2.6px;

  text-transform:uppercase;
}


.chefFinalFooter__logo{
  display:inline-block;

  width:225px;

  text-decoration:none;

  transition:
    transform .4s ease,
    opacity .3s ease;
}


.chefFinalFooter__logo img{
  display:block;

  width:100%;
  height:auto;

  object-fit:contain;
}


.chefFinalFooter__logo:hover{
  transform:translateY(-5px);

  opacity:.9;
}


.chefFinalFooter__tagline{
  max-width:500px;

  margin:27px auto 0;

  color:var(--cff-text);

  font-family:"Cormorant Garamond",serif;

  font-size:24px;
  font-weight:500;

  line-height:1.45;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.chefFinalFooter__actions{
  margin-top:33px;

  display:flex;
  justify-content:center;
  align-items:center;

  gap:10px;
}


.chefFinalFooter__action{
  position:relative;

  min-width:185px;
  height:52px;

  padding:0 17px;

  display:inline-flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  border:1px solid var(--cff-line);

  background:transparent;

  color:#fff;

  text-decoration:none;

  font-size:9px;
  font-weight:700;

  letter-spacing:1.4px;
  text-transform:uppercase;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.chefFinalFooter__action i{
  color:var(--cff-yellow);

  font-size:17px;

  transition:
    transform .35s ease;
}


.chefFinalFooter__action:hover{
  border-color:#fff;

  background:#fff;

  color:#111;

  transform:translateY(-3px);
}


.chefFinalFooter__action:hover i{
  transform:translate(3px,-3px);
}


.chefFinalFooter__action--yellow{
  border-color:var(--cff-yellow);

  background:var(--cff-yellow);

  color:#111;
}


.chefFinalFooter__action--yellow i{
  color:#111;
}


.chefFinalFooter__action--yellow:hover{
  border-color:#fff;

  background:#fff;
}


/* =========================================================
   INFORMATION GRID
========================================================= */

.chefFinalFooter__infoGrid{
  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  border-top:1px solid var(--cff-line);
  border-bottom:1px solid var(--cff-line);
}


.chefFinalFooter__infoColumn{
  position:relative;

  min-height:335px;

  padding:42px clamp(25px,3vw,48px);

  border-right:1px solid var(--cff-line);

  transition:
    background .35s ease;
}


.chefFinalFooter__infoColumn:first-child{
  padding-left:0;
}


.chefFinalFooter__infoColumn:last-child{
  padding-right:0;

  border-right:0;
}


.chefFinalFooter__infoColumn:hover{
  background:#080808;
}


/* top line */

.chefFinalFooter__columnTop{
  margin-bottom:37px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;
}


.chefFinalFooter__columnNumber{
  color:var(--cff-muted);

  font-size:9px;
  font-weight:700;

  letter-spacing:1px;
}


.chefFinalFooter__columnTop > i{
  color:var(--cff-yellow);

  font-size:22px;

  transition:
    transform .35s ease;
}


.chefFinalFooter__infoColumn:hover
.chefFinalFooter__columnTop > i{
  transform:translateY(-4px);
}


/* labels */

.chefFinalFooter__label{
  display:block;

  margin-bottom:9px;

  color:var(--cff-yellow);

  font-size:8px;
  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;
}


.chefFinalFooter__infoColumn h3{
  margin:0 0 24px;
  color:#fff;
  font-size:38px;
  font-weight: 300;
  line-height:1;
}


/* =========================================================
   ADDRESS
========================================================= */

.chefFinalFooter__infoColumn address{
  margin:0;
  color: #b7b7b1;
  font-size:12px;
  font-style:normal;
  line-height:1.8;
}


.chefFinalFooter__textLink{
  display:inline-flex;
  align-items:center;

  gap:8px;

  margin-top:22px;

  color:#fff;

  text-decoration:none;

  font-size:9px;
  font-weight:700;

  letter-spacing:1.3px;

  text-transform:uppercase;

  transition:
    gap .3s ease,
    color .3s ease;
}


.chefFinalFooter__textLink i{
  color:var(--cff-yellow);

  font-size:16px;
}


.chefFinalFooter__textLink:hover{
  gap:13px;

  color:var(--cff-yellow);
}


/* =========================================================
   CONTACT
========================================================= */

.chefFinalFooter__contactList{
  display:flex;
  flex-direction:column;

  gap:17px;
}


.chefFinalFooter__contactList a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size: 18px;
  font-weight: 300;
  line-height:1.2;
  transition:
    color .3s ease,
    transform .3s ease;
}


.chefFinalFooter__contactList a span{
  display:block;

  margin-bottom:5px;

  color:var(--cff-muted);

  font-family:"Montserrat",sans-serif;

  font-size:8px;
  font-weight:700;

  letter-spacing:1.3px;

  text-transform:uppercase;
}


.chefFinalFooter__contactList a:hover{
  color:var(--cff-yellow);

  transform:translateX(5px);
}


/* =========================================================
   HOURS WIDGET
========================================================= */

.chefFinalFooter__hours{
  color:var(--cff-text);

  font-size:11px;
  line-height:1.75;
}


.chefFinalFooter__hours #hoursWidget{
  width:100%;
}


/* Optional styling for widget-generated content */

.chefFinalFooter__hours ul{
  margin:0;
  padding:0;

  list-style:none;
}


.chefFinalFooter__hours li{
  padding:8px 0;

  border-bottom:1px solid rgba(255,255,255,.08);
}


.chefFinalFooter__hours li:last-child{
  border-bottom:0;
}


/* =========================================================
   NAVIGATION
========================================================= */

.chefFinalFooter__navigation{
  min-height:100px;

  display:grid;

  grid-template-columns:
    110px
    1fr
    auto;

  align-items:center;

  gap:30px;

  border-bottom:1px solid var(--cff-line);
}


.chefFinalFooter__navigationTitle{
  color:var(--cff-muted);

  font-size:8px;
  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;
}


.chefFinalFooter__links{
  display:flex;
  align-items:center;
  gap:clamp(18px,3vw,42px);
  flex-wrap: wrap;
  justify-content: flex-end;
}


.chefFinalFooter__links a{
  position:relative;

  padding:10px 0;

  color:#fff;

  text-decoration:none;

  font-size:9px;
  font-weight:700;

  letter-spacing:1.4px;

  text-transform:uppercase;

  transition:color .3s ease;
}


.chefFinalFooter__links a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:5px;

  width:0;
  height:1px;

  background:var(--cff-yellow);

  transition:width .35s ease;
}


.chefFinalFooter__links a:hover{
  color:var(--cff-yellow);
}


.chefFinalFooter__links a:hover::after{
  width:100%;
}


/* socials */

.chefFinalFooter__socials{
  display:flex;
  align-items:center;

  gap:7px;
}


.chefFinalFooter__socials a{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid var(--cff-line);

  color:#fff;

  text-decoration:none;

  font-size:16px;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease;
}


.chefFinalFooter__socials a:hover{
  border-color:var(--cff-yellow);

  background:var(--cff-yellow);

  color:#111;

  transform:translateY(-4px);
}


/* =========================================================
   LARGE SIGNATURE
========================================================= */

.chefFinalFooter__signature{
  padding:65px 0 58px;

  display:flex;
  align-items:flex-end;
  justify-content:center;

  gap:20px;

  text-align:center;

  overflow:hidden;
}


.chefFinalFooter__signature span{
  color:#fff;

  font-family:"Allura",cursive;

  font-size:clamp(80px,11vw,180px);

  line-height:.65;

  white-space:nowrap;
}


.chefFinalFooter__signature strong{
  margin-bottom:7px;

  color:var(--cff-yellow);

  font-size:10px;
  font-weight:700;

  letter-spacing:3px;

  text-transform:uppercase;
}


/* =========================================================
   BOTTOM
========================================================= */

.chefFinalFooter__bottom{
  padding-top:26px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:30px;

  border-top:1px solid var(--cff-line);
}


.chefFinalFooter__bottom p{
  margin:0;
  color: #74746e;
  font-size:8px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}


.chefFinalFooter__backTop{
  display:flex;
  align-items:center;

  gap:10px;

  color:#fff;

  text-decoration:none;

  font-size:8px;
  font-weight:700;

  letter-spacing:1.3px;

  text-transform:uppercase;

  transition:color .3s ease;
}


.chefFinalFooter__backTop i{
  width:35px;
  height:35px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid var(--cff-line);

  color:var(--cff-yellow);

  font-size:15px;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}


.chefFinalFooter__backTop:hover{
  color:var(--cff-yellow);
}


.chefFinalFooter__backTop:hover i{
  background:var(--cff-yellow);

  color:#111;

  transform:translateY(-4px);
}


/* =========================================================
   REVEAL
========================================================= */

[data-footer-reveal]{
  opacity:0;

  transform:translateY(38px);

  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.2,.7,.2,1);
}


[data-footer-reveal].is-visible{
  opacity:1;

  transform:none;
}


.chefFinalFooter__infoColumn:nth-child(1){
  transition-delay:.05s;
}


.chefFinalFooter__infoColumn:nth-child(2){
  transition-delay:.12s;
}


.chefFinalFooter__infoColumn:nth-child(3){
  transition-delay:.19s;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

  .chefFinalFooter{
    padding-top:90px;
  }


  .chefFinalFooter__infoGrid{
    grid-template-columns:1fr 1fr;
  }


  .chefFinalFooter__infoColumn{
    padding:35px;
  }


  .chefFinalFooter__infoColumn:first-child{
    padding-left:35px;
  }


  .chefFinalFooter__infoColumn:nth-child(2){
    border-right:0;
  }


  .chefFinalFooter__infoColumn--hours{
    grid-column:1 / -1;

    border-top:1px solid var(--cff-line);
  }


  .chefFinalFooter__infoColumn:last-child{
    padding:35px;
  }


  .chefFinalFooter__navigation{
    grid-template-columns:1fr auto;
  }


  .chefFinalFooter__navigationTitle{
    grid-column:1 / -1;

    padding-top:25px;
  }


  .chefFinalFooter__signature{
    display:block;
  }


  .chefFinalFooter__signature strong{
    display:block;

    margin-top:25px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){

  .chefFinalFooter{
    padding: 70px 30px;
  }


  .chefFinalFooter__container{
    width:calc(100% - 30px);
  }


  .chefFinalFooter__brandArea{
    margin-bottom:55px;
  }


  .chefFinalFooter__logo{
    width:180px;
  }


  .chefFinalFooter__tagline{
    font-size:21px;
  }


  .chefFinalFooter__actions{
    display:block;
  }


  .chefFinalFooter__action{
    width:100%;

    margin-bottom:9px;
  }


  /* info */

  .chefFinalFooter__infoGrid{
    display:block;
  }


  .chefFinalFooter__infoColumn,
  .chefFinalFooter__infoColumn:first-child,
  .chefFinalFooter__infoColumn:last-child{
    min-height:auto;

    padding:33px 0;

    border-right:0;
    border-bottom:1px solid var(--cff-line);
  }


  .chefFinalFooter__infoColumn:last-child{
    border-bottom:0;
  }


  .chefFinalFooter__columnTop{
    margin-bottom:27px;
  }


  .chefFinalFooter__infoColumn h3{
    font-size:34px;
  }


  /* navigation */

  .chefFinalFooter__navigation{
    display:block;

    padding:30px 0;
  }


  .chefFinalFooter__navigationTitle{
    display:block;

    margin-bottom:18px;
    padding:0;
  }


  .chefFinalFooter__links{
    display:grid;

    grid-template-columns:
      repeat(2,1fr);

    gap:8px 25px;
  }


  .chefFinalFooter__socials{
    margin-top:25px;
  }


  /* signature */

  .chefFinalFooter__signature{
    padding:58px 0 45px;
  }


  .chefFinalFooter__signature span{
    font-size:25vw;
  }


  .chefFinalFooter__signature strong{
    margin-top:23px;

    font-size:8px;

    letter-spacing:2.2px;
  }


  /* bottom */

  .chefFinalFooter__bottom{
    align-items:flex-start;

    flex-direction:column;
  }


  .chefFinalFooter__bottom p{
    line-height:1.7;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:390px){

  .chefFinalFooter__logo{
    width:160px;
  }


  .chefFinalFooter__tagline{
    font-size:19px;
  }


  .chefFinalFooter__signature span{
    font-size:24vw;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .chefFinalFooter *,
  .chefFinalFooter *::before,
  .chefFinalFooter *::after{
    animation:none !important;
    transition:none !important;
  }


  [data-footer-reveal]{
    opacity:1;
    transform:none;
  }

}
a.footer_main {
    color: #74746e;
    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);
}
