@charset "UTF-8";
/****************************
 ACCESSIBLE TEXT COLOURS

 The brand palette cannot carry white or pink text at AA. These are the
 measured replacements — ratios stated against the background each one is
 used on. Backgrounds themselves are unchanged.
*****************************/
/****************************
 UTILITIES
*****************************/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  padding: 12px 20px;
  background-color: #fff;
  color: #901822;
  font-family: "roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  transform: translateY(-120%);
}
.skip-link:focus {
  transform: translateY(0);
}

/*--- Focus indicator ---
  A dark ring with a light halo, so one rule stays visible on the gold panel,
  the red panels, the photography and plain white alike. */
:focus-visible {
  outline: 3px solid #10131a;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.95);
}

:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/****************************
 HIGH PPI DISPLAY BACKGROUNDS
*****************************/
.lm-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: url("../images/spinner.gif") 50% 50% no-repeat rgb(255, 255, 255);
  background-size: 100px 100px;
  animation: lm-loader-retire 0s linear 6s forwards;
}
.lm-loader[hidden] {
  display: none;
}

@keyframes lm-loader-retire {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*--- fonts ---*/
@font-face {
  font-family: "evogriaregular";
  src: url("/fonts/evogria-webfont.eot");
  src: url("/fonts/evogria-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/evogria-webfont.woff2") format("woff2"), url("/fonts/evogria-webfont.woff") format("woff"), url("/fonts/evogria-webfont.svg#evogriaregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*--- SITE STRUCTURE ---*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 200px;
}

body {
  overflow-x: hidden;
}

body, p, h1, h2, h3, h4, h5 {
  font-family: "roboto", sans-serif;
}

.thick-text, #chef .item-copy p, #meaning .item-copy p, #about p {
  font-family: "evogriaregular", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
  color: #fff;
}

a {
  text-decoration: none;
}

/*--- SPACING - MARGIN ---*/
.d-mt-20 {
  margin-top: 20px !important;
}

.d-mb-20 {
  margin-bottom: 20px !important;
}

.d-mt-15 {
  margin-top: 15px !important;
}

.d-mb-15 {
  margin-bottom: 15px !important;
}

/*--- SPACING - PADDING ---*/
.d-pb-1 {
  padding-bottom: 1rem;
}

.font-roboto {
  font-family: "roboto", sans-serif;
}

/*--- Menu ---*/
.nav-scroll .site-header ul {
  margin: 0 auto 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.site-header {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.site-header .nav-container {
  background: #901822;
  padding: 28px 0;
  box-shadow: 0px 8px 8px 0px rgba(63, 63, 63, 0.3);
  z-index: 9;
  background-image: url("../images/nav-bck.jpg");
  background-size: 1920px 150px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .site-header .nav-container {
    background-image: url("../images/nav-bck@2x.jpg");
  }
}
.site-header .nav-container {
  background-size: cover;
  position: relative;
}
.site-header .nav-container ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 85%;
  max-width: 700px;
  color: #fff;
  margin: 0 auto;
  list-style: none;
  padding: none !important;
  -webkit-padding-start: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.site-header .nav-container li {
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
}
.site-header .nav-container a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 2px 6px;
  min-height: 24px;
}
.site-header .nav-container .social-icons-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .nav-container .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 15px;
}
.site-header .nav-container .social-icon img {
  display: block;
}
.site-header .nav-container .icon-facebook {
  width: 11px;
}
.site-header .nav-container .icon-twitter {
  width: 23px;
}
.site-header .nav-container .icon-instagram {
  width: 20px;
}

/*--- Hamburger toggle ---
  A real <button>, so the browser resets below strip the UA chrome while the
  40px×44px box keeps it above the 24px minimum target size. */
.menu-btn {
  display: none;
  position: absolute;
  cursor: pointer;
  top: 15px;
  left: 28px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.2;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.menu-btn__bars {
  display: block;
  width: 21px;
}

.menu-btn__bars span {
  display: block;
  width: 21px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn[aria-expanded=true] .menu-btn__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn[aria-expanded=true] .menu-btn__bars span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded=true] .menu-btn__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*--- Mobile menu panel ---
  Sits in normal flow inside the fixed header, so it lands directly beneath
  the bar at every breakpoint. The old version was position:fixed with a
  hand-tuned padding-top per breakpoint and a z-index that put it behind the
  header. */
.mobile-menu {
  width: 100%;
  padding: 0 0 20px;
  background-color: #d09712;
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, visibility 0s linear 0.3s;
}
.mobile-menu--open {
  max-height: 60vh;
  overflow-y: auto;
  visibility: visible;
  transition: max-height 0.3s ease, visibility 0s linear 0s;
}
.mobile-menu[hidden] {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px 8px 0;
}
.mobile-menu li {
  text-align: center;
  padding: 0;
}
.mobile-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #222127;
  font-weight: 600;
  letter-spacing: 2px;
}

/*--- Hero ---*/
.hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}
.hero .mask {
  min-height: inherit;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.25);
}
.hero .hero-content {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.hero .hero-content .hero-logo {
  width: 360px;
  margin-top: 60px;
}
.hero .hero-content .hero-logo h1 {
  margin: 0;
}
.hero .hero-content .hero-logo img {
  display: block;
  width: 100%;
}
.hero .gift {
  display: block;
  position: absolute;
  width: 350px;
  bottom: 40%;
  right: -22px;
  opacity: 0.89;
}

.hero-contact {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.hero-contact p {
  font-family: "evogriaregular", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
}
.hero-contact p a {
  color: #fff;
}
.hero-contact p a span {
  margin: 0 15px;
}
.hero-contact img {
  display: block;
  width: 175px;
  margin: 0 auto;
}

#about {
  background-color: #d09712;
}
#about .lm-since {
  margin: 0 auto;
  padding-top: 35px;
  display: block;
}
#about p {
  width: 85%;
  max-width: 970px;
  margin: 0 auto;
  color: #222127;
  font-size: 26px;
  text-align: center;
  padding: 10px 0 10px;
}
#about p span {
  color: #6b0915;
}
#about p:last-of-type {
  padding-bottom: 30px;
}

/*--- Meaning ---*/
#meaning {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: space-between;
}
#meaning .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url("../images/meaning-min.jpg") no-repeat center/cover;
}
#meaning .item-copy {
  width: 50%;
  padding: 0 50px;
  background-color: #971823;
  padding: 40px 0 60px;
  font-size: 21px;
}
#meaning .item-copy .lm-what-means {
  display: block;
  margin: 0 auto;
  padding: 20px 0 10px;
}
#meaning .item-copy p {
  width: 75%;
  margin: 0 auto;
  padding: 20px 0;
}
#meaning .item-copy span {
  color: #eec14a;
}
#meaning .more-button {
  position: absolute;
  display: block;
  width: 230px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 0;
  border-radius: 18px 18px 0 0;
  padding: 8px 3px 8px 25px;
  background-color: #51BBDE;
  cursor: pointer;
  z-index: 999;
}
#meaning .more-button .more-cnt {
  display: block;
  position: relative;
}
#meaning .more-button .from-chef {
  display: block;
}
#meaning .more-button .circle-plus {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
}
#meaning .more-button .circle {
  margin-left: auto;
}
#meaning {
  /*--- Plus minus button ---*/
}
#meaning .closed .vertical {
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
}
#meaning .closed .horizontal {
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
  opacity: 1;
}
#meaning .opened {
  opacity: 1;
}
#meaning .opened .vertical {
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
}
#meaning .opened .horizontal {
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
  opacity: 0;
}
#meaning .circle-plus {
  display: block;
  height: 4em;
  width: 4em;
  font-size: 1em;
}
#meaning .circle-plus .circle {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: solid 0.5em #06485e;
  background-color: #06485e;
}
#meaning .circle-plus .circle .horizontal {
  position: absolute;
  background-color: #51BBDE;
  width: 18px;
  height: 4px;
  left: 50%;
  margin-left: -9px;
  top: 50%;
  margin-top: -2.5px;
  border-radius: 4px;
}
#meaning .circle-plus .circle .vertical {
  position: absolute;
  background-color: #51BBDE;
  width: 4px;
  height: 18px;
  left: 50%;
  margin-left: -2px;
  top: 50%;
  margin-top: -9px;
  border-radius: 4px;
}

/*--- Chef ---*/
#chef {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #51BBDE;
  padding: 100px 0 60px;
}
#chef .item-copy {
  width: 760px;
  padding: 0 30px;
}
#chef .item-copy h2 {
  color: #06495a;
  font-family: "evogriaregular", sans-serif;
  line-height: 1;
}
#chef .item-copy h2 span {
  font-size: 20px;
}
#chef .item-copy p {
  color: #06495a;
  font-size: 18px;
}

/*--- Gallery ---*/
.lm-gallery ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lm-gallery ul li {
  width: 25%;
  height: 350px;
}
.lm-gallery ul .gallery-item-01 {
  background-image: url("../images/gallery/gallery-new-01.jpg");
  background-size: 640px 640px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .lm-gallery ul .gallery-item-01 {
    background-image: url("../images/gallery/gallery-new-01@2x.jpg");
  }
}
.lm-gallery ul .gallery-item-01 {
  background-size: cover;
}
.lm-gallery ul .gallery-item-02 {
  background-image: url("../images/gallery/gallery-new-02.jpg");
  background-size: 640px 600px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .lm-gallery ul .gallery-item-02 {
    background-image: url("../images/gallery/gallery-new-02@2x.jpg");
  }
}
.lm-gallery ul .gallery-item-02 {
  background-size: cover;
}
.lm-gallery ul .gallery-item-03 {
  background-image: url("../images/gallery/gallery-new-03.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lm-gallery ul .gallery-item-04 {
  background-image: url("../images/gallery/gallery-new-04.jpg");
  background-size: 640px 640px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .lm-gallery ul .gallery-item-04 {
    background-image: url("../images/gallery/gallery-new-04@2x.jpg");
  }
}
.lm-gallery ul .gallery-item-04 {
  background-size: cover;
}
.lm-gallery ul .gallery-item-05 {
  background-image: url("../images/gallery/gallery-new-11.jpg");
  background-size: 640px 640px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .lm-gallery ul .gallery-item-05 {
    background-image: url("../images/gallery/gallery-new-11@2x.jpg");
  }
}
.lm-gallery ul .gallery-item-05 {
  background-size: cover;
}
.lm-gallery ul .gallery-item-06 {
  background-image: url("../images/gallery/gallery-new-09.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lm-gallery ul .gallery-item-07 {
  background-image: url("../images/gallery/gallery-new-07.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lm-gallery ul .gallery-item-08 {
  background-image: url("../images/gallery/gallery-new-10.jpg");
  background-size: 640px 640px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .lm-gallery ul .gallery-item-08 {
    background-image: url("../images/gallery/gallery-new-10@2x.jpg");
  }
}
.lm-gallery ul .gallery-item-08 {
  background-size: cover;
}

/*--- Fullwidth image with Parallax ---*/
.fullwidth-img-parallax {
  background-image: url("../images/hero-new-min.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 35%;
}

/*--- Press ---*/
.press-container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  padding: 80px 0;
  text-align: center;
  align-items: center;
}
.press-container a {
  width: 250px;
  margin: 0 auto;
}
.press-container a.press-item-04 {
  width: 110px;
}
.press-container img {
  width: 100%;
  margin: 0 auto;
}

/*--- Food Menu ---*/
#section-menu {
  background-image: url("../images/menu-bck-opacity.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#section-menu .inner-content {
  width: 85%;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
#section-menu .menu-hdr {
  display: block;
  margin: 0 auto;
}
#section-menu .intro {
  font-family: "evogriaregular", sans-serif;
  color: #941c26;
  font-size: 21px;
  text-align: center;
}
#section-menu .food-menu {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}
#section-menu .food-menu .food-menu-column {
  width: 100%;
}
#section-menu .food-menu .food-menu-column ul {
  list-style-type: none;
  margin: 0;
  padding: 0 20px 0;
}
#section-menu .food-menu .food-menu-column li {
  font-weight: 300;
  font-size: 15px;
}
#section-menu .food-menu h3 {
  font-family: "evogriaregular", sans-serif;
  color: #941c26;
  font-size: 38px;
  text-align: center;
}
#section-menu .food-menu h4 {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 25px 0 8px;
}
#section-menu .food-menu h4 span {
  font-weight: 400;
  font-size: 16px;
}
#section-menu .food-menu span {
  display: none;
  color: #901822;
}

/*--- Map ---*/
#map {
  width: 100%;
  height: 600px;
}

/*--- Footer ---*/
footer {
  width: 100%;
  background-image: url("../images/footer-bck-min.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
footer p {
  font-family: "evogriaregular", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 0;
}
footer .site-credit {
  padding: 0 0 10px 25px;
  font-size: 14px;
  font-family: "roboto", sans-serif;
}
footer .site-credit img {
  margin-right: 10px;
  vertical-align: middle;
}
footer .site-credit__link {
  display: inline-block;
  margin-left: 12px;
  padding: 2px 0;
  min-height: 24px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .site-credit__link[aria-current=page] {
  text-decoration-thickness: 2px;
}

/*--- Legal / statement pages ---*/
.legal-page {
  padding: 190px 0 90px;
  background-color: #f7f5f0;
  color: #201c1c;
  font-family: "roboto", sans-serif;
}
.legal-page__inner {
  width: 88%;
  max-width: 760px;
  margin: 0 auto;
}
.legal-page__back {
  margin: 0 0 2.5rem;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.legal-page__back-arrow {
  color: #941c26;
  font-weight: 600;
}
.legal-page__back a {
  display: inline-block;
  padding: 2px 0;
  min-height: 24px;
  color: #941c26;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page h1 {
  margin: 0 0 1rem;
  font-family: "evogriaregular", sans-serif;
  color: #941c26;
  font-size: 44px;
  line-height: 1.1;
}
.legal-page__intro {
  margin: 0 0 2.5rem;
  font-size: 19px;
}
.legal-page h2 {
  margin: 2.75rem 0 0.75rem;
  font-family: "evogriaregular", sans-serif;
  color: #941c26;
  font-size: 26px;
  line-height: 1.2;
}
.legal-page p {
  margin: 0 0 1.15rem;
  font-size: 17px;
  line-height: 1.7;
}
.legal-page ul {
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
}
.legal-page li {
  margin-bottom: 0.5rem;
  font-size: 17px;
  line-height: 1.7;
}
.legal-page a {
  color: #941c26;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media only screen and (max-width: 479px) {
  .legal-page {
    padding: 165px 0 60px;
  }
  .legal-page h1 {
    font-size: 34px;
  }
  .legal-page h2 {
    font-size: 22px;
  }
}

.footer-cnt {
  width: 85%;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.footer-item {
  width: 33.33%;
  padding: 20px;
  text-align: center;
}
.footer-item img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.footer-item a {
  color: #fff;
  display: block;
  transition: 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-item-01 img:first-of-type {
  max-width: 220px;
}
.footer-item-01 img:last-of-type {
  width: 35px;
}

.footer-item-03 img {
  max-width: 175px;
}

@media only screen and (max-width: 1200px) {
  .hero .gift {
    bottom: 40px;
  }
  #meaning .item-img, #meaning .item-copy {
    width: 100%;
  }
  #meaning .item-img {
    position: static;
    height: 650px;
    background-position: center top;
  }
  #section-menu .food-menu .food-menu-column {
    width: 100%;
  }
  #section-menu ul {
    width: 85%;
    max-width: 400px;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center;
  }
  footer .footer-cnt {
    width: 95%;
  }
  footer .footer-item {
    width: 33.33%;
  }
  footer .footer-item-02 {
    flex-basis: auto;
  }
  .fullwidth-img-parallax {
    padding-top: 45%;
  }
}
@media only screen and (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
  .lm-gallery ul li {
    width: 50% !important;
  }
  .press-container {
    display: block;
    padding: 30px 0;
  }
  .press-container a {
    display: block;
    max-width: 250px;
    margin-bottom: 2rem;
  }
  .press-container .press-item-01 {
    width: 350px;
    max-width: 350px;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 980px) {
  .fullwidth-img-parallax {
    padding-top: 50%;
  }
  footer {
    padding-top: 30px;
  }
  footer .footer-item {
    width: 100%;
  }
  footer .footer-item-02 img {
    max-width: 390px;
  }
}
@media only screen and (max-width: 780px) {
  #about p {
    font-size: 20px;
  }
  #meaning .item-copy p {
    font-size: 20px;
    width: 85%;
  }
  #chef {
    padding-top: 50px;
  }
  #chef .item-copy {
    padding: 0;
    width: 85%;
  }
}
@media only screen and (max-width: 767px) {
  .fullwidth-img-parallax {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 750px) {
  .site-header .nav-container ul {
    justify-content: flex-end;
  }
  .desktop-menu li {
    display: none;
  }
  .desktop-menu .social-icons-cnt {
    display: flex;
  }
  .menu-btn {
    display: flex;
  }
}
@media only screen and (max-width: 450px) {
  .hero .hero-content .hero-logo {
    width: 310px;
  }
  #about p {
    text-align: left;
    font-size: 18px;
  }
  #about p:last-of-type {
    text-align: center;
  }
  #meaning .item-copy p {
    font-size: 18px;
  }
  #section-menu .intro {
    text-align: left;
    font-size: 18px;
  }
  .lm-gallery ul li {
    width: 100% !important;
    height: 360px;
  }
  .hero-contact {
    display: none;
  }
  .press-container .press-item-01 {
    width: 250px;
    max-width: 250px;
  }
}
@media only screen and (max-width: 380px) {
  .hero .hero-content .hero-logo {
    width: 260px;
  }
  .hero .gift {
    bottom: 10px;
  }
  footer p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 330px) {
  .hero .gift {
    width: 320px;
  }
}
/*--- No JavaScript ---
  Without JS the toggle button is inert, and below 750px the desktop links
  are hidden — which would leave a no-JS visitor with no navigation at all.
  So: hide the toggle, show the panel, and drop the loading overlay. */
.no-js .lm-loader {
  display: none;
}
.no-js .menu-btn {
  display: none !important;
}
.no-js .mobile-menu {
  max-height: none;
  visibility: visible;
  transition: none;
  overflow: visible;
}
.no-js .mobile-menu[hidden] {
  display: block;
}
.no-js #chef {
  display: flex !important;
}
.no-js .more-button {
  display: none;
}

/*--- Reduced motion ---
  Parallax and long transitions are a vestibular trigger. The JS side reads
  the same media query and drops its animation durations to zero. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero,
  .fullwidth-img-parallax {
    background-attachment: scroll;
  }
  .lm-loader {
    animation-duration: 0s !important;
    animation-delay: 6s !important;
  }
}
.desktop-alert {
  display: block;
}
@media only screen and (max-width: 479px) {
  .desktop-alert {
    display: none !important;
  }
}

.mobile-alert {
  display: none;
  text-align: left;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 479px) {
  .mobile-alert {
    display: block;
    text-align: center;
    padding-top: 10px;
  }
}
.mobile-alert p {
  line-height: 2;
  padding-bottom: 0 !important;
}
.mobile-alert span {
  margin-right: 0.3rem !important;
  padding: 3px 6px !important;
}
.mobile-alert a {
  display: inline-block;
  margin-left: 0 !important;
  color: #fff;
}

.alert-wrapper {
  width: 100%;
  background-color: #222127;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background: rgb(71, 11, 15);
  background: radial-gradient(circle, rgb(71, 11, 15) 0%, rgb(107, 13, 25) 50%);
}
.alert-wrapper .alert-copy {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.alert-wrapper .alert-inner {
  text-transform: initial;
  text-align: center;
  font-size: 16px;
}
.alert-wrapper p {
  padding-bottom: 0;
  padding: 1rem 0 0.9rem;
  color: #fff;
  margin: 0;
  display: block;
}
.alert-wrapper span {
  font-weight: 600;
  font-size: 14px;
  padding: 4px 12px;
  margin-left: 10px;
  border-radius: 30px;
  background-color: #d09712;
  border: 1px solid #d09712;
  color: #222127;
}
@media (hover: hover) {
  .alert-wrapper span:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
}
.alert-wrapper a {
  color: #fff;
  display: inline-block;
  padding: 2px 0;
  min-height: 24px;
}

.alert-notice-lightbox .avatar-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-direction: column;
  align-content: center;
}
@media only screen and (max-width: 390px) {
  .alert-notice-lightbox .avatar-details {
    display: block;
  }
}
.alert-notice-lightbox .avatar-details .virus-solid {
  width: 40px;
  opacity: 0.7;
  margin-right: 1rem;
}
.alert-notice-lightbox .avatar-details__sub-headline {
  text-align: center;
}
.alert-notice-lightbox .buddha-container {
  text-align: center;
  display: none;
}
.alert-notice-lightbox .buddha-container .buddha {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 1.5rem;
}
.alert-notice-lightbox .avatar-item {
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 390px) {
  .alert-notice-lightbox .avatar-item {
    padding: 2rem 7%;
  }
}
.alert-notice-lightbox p {
  font-size: 17px !important;
  margin: 0 0 1em;
}
@media only screen and (max-width: 479px) {
  .alert-notice-lightbox p {
    font-size: 16px !important;
  }
}
.alert-notice-lightbox .micro-scroll-prompt {
  padding-right: 2rem;
  text-align: left;
  padding-top: 20px;
}
.alert-notice-lightbox .micro-scroll-prompt img {
  width: 16px;
  opacity: 0.5;
}

/*--- Lightbox Wrappers ---*/
html.covid-popup-open {
  overflow-y: hidden;
}

.lm-lightbox {
  position: relative;
  z-index: 9999;
}
.lm-lightbox .bck-close {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.lm-lightbox .close-lightbox {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 1.2rem;
  border: 0;
  background: none;
  cursor: pointer;
  color: grey;
}
.lm-lightbox .close-lightbox svg {
  width: 16px;
  height: 16px;
}
.lm-lightbox .close-lightbox svg .close-svg {
  fill: grey;
}

.avatar-lightbox-item {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.avatar-lightbox-item.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.no-js .avatar-lightbox-item:target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.avatar-lightbox-item .avatar-item {
  position: relative;
  width: 90%;
  max-width: 660px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 479px) {
  .avatar-lightbox-item .avatar-item {
    padding: 2rem 1rem;
  }
}

.avatar-lightbox-item h2 {
  text-align: center;
  margin-bottom: 5px;
}
.avatar-lightbox-item .avatar-details__headline:focus {
  outline: none;
  box-shadow: none;
}
.avatar-lightbox-item .lightbox-subhead {
  font-size: 1rem;
  text-decoration: underline;
}
.avatar-lightbox-item .lightbox-ctn-container:focus-visible {
  outline-offset: -3px;
  box-shadow: none;
}
.avatar-lightbox-item .avatar-item {
  height: auto;
}
.avatar-lightbox-item .avatar-wide .avatar-copy {
  overflow-y: auto;
  height: auto;
}
.avatar-lightbox-item .lightbox-ctn-container {
  padding-right: 6%;
  padding-bottom: 35px;
  height: 550px;
  overflow-y: auto;
  text-align: center;
}
.avatar-lightbox-item .lightbox-ctn-container p {
  line-height: 1.7em;
}
.avatar-lightbox-item .lightbox-ctn-container a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.avatar-lightbox-item .lightbox-ctn-container h3 {
  margin: 30px 0 10px;
}
.avatar-lightbox-item .lightbox-ctn-container h3:first-child {
  margin-top: 0;
}
.avatar-lightbox-item .lightbox-ctn-container__info {
  text-align: center;
  margin-bottom: 20px;
}
.avatar-lightbox-item .lightbox-ctn-container__info p {
  margin-bottom: 0;
}
.avatar-lightbox-item .lightbox-ctn-container__content-item {
  margin-bottom: 30px;
}
.avatar-lightbox-item .lightbox-ctn-container__content-item h3 {
  margin: 0 0 10px;
}
.avatar-lightbox-item .lightbox-ctn-container__content-item p {
  margin-bottom: 5px;
}
.avatar-lightbox-item .avatar-copy {
  height: auto;
  overflow-y: auto;
}
.avatar-lightbox-item ul.social-icons {
  padding: 0;
}
.avatar-lightbox-item ul.social-icons li {
  display: inline-block;
  margin-right: 10px;
}
.avatar-lightbox-item ul.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-size: 35px;
  color: #971823;
}
