:root {
  --gray-100: #f5f9fc;
  --gray-800: #35353b;
  --primary-600: #cc7c00;
  --primary-500: #faa614;
  --primary-400: #fcbb4a;
  --gray-600: #6f7076;
  --white: white;
  --gray-900: #002147;
  --gray-700: #4e4f55;
  --gray-500: #9b9ca1;
  --gray-400: #c2c3c7;
  --gray-300: #dbdde1;
  --gray-200: #edeef2;
  --primary-300: #fed58e;
  --primary-200: #ffeed1;
  --primary-100: #fff8eb;
  --primary-700: #9e5900;
  --primary-800: #703700;
  --primary-900: #411400;
  --secondary-900: #232e23;
  --secondary-800: #2b392b;
  --secondary-700: #324332;
  --secondary-600: #405840;
  --secondary-500: #576c57;
  --secondary-400: #6d806d;
  --secondary-300: #9aa79a;
  --secondary-200: #c7cfc7;
  --secondary-100: #f4f6f4;
  --black: #0b0d0f;
  --error: #db2a2a;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  background-color: var(--gray-100);
  color: var(--gray-800);
  font-family: Source Sans Pro, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  margin-top: .25rem;
  margin-bottom: 1rem;
  font-family: Playfair Display, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  margin-top: .25rem;
  margin-bottom: 1.75rem;
  font-family: Playfair Display, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  margin-top: .25rem;
  margin-bottom: .75rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  margin-top: .25rem;
  margin-bottom: 1rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  letter-spacing: .04rem;
  text-transform: uppercase;
  margin-top: .25rem;
  margin-bottom: .75rem;
  font-family: Lato, sans-serif;
  font-size: .825rem;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  letter-spacing: .06rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: Lato, sans-serif;
  font-size: .6rem;
  font-weight: 700;
  line-height: 1;
}

p {
  margin-bottom: 1rem;
  line-height: 1.825;
}

a {
  color: var(--primary-600);
  line-height: 1.6;
  text-decoration: underline;
  transition: color .2s;
}

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

a:active {
  color: var(--primary-400);
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 2px solid var(--gray-600);
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: .875rem 1.25rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.components__wrapper {
  background-color: var(--white);
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.components__color-block {
  background-color: #fff;
  border-radius: 40px;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  box-shadow: inset 0 2px 7px #0000000f;
}

.components__color-block.gray-900 {
  background-color: var(--gray-900);
}

.components__color-block.gray-800 {
  background-color: var(--gray-800);
}

.components__color-block.gray-700 {
  background-color: var(--gray-700);
}

.components__color-block.gray-600 {
  background-color: var(--gray-600);
}

.components__color-block.gray-500 {
  background-color: var(--gray-500);
}

.components__color-block.gray-400 {
  background-color: var(--gray-400);
}

.components__color-block.gray-300 {
  background-color: var(--gray-300);
}

.components__color-block.gray-200 {
  background-color: var(--gray-200);
}

.components__color-block.gray-100 {
  background-color: var(--gray-100);
}

.components__color-block.primary-500 {
  background-color: var(--primary-500);
}

.components__color-block.primary-400 {
  background-color: var(--primary-400);
}

.components__color-block.primary-300 {
  background-color: var(--primary-300);
}

.components__color-block.primary-200 {
  background-color: var(--primary-200);
}

.components__color-block.primary-100 {
  background-color: var(--primary-100);
}

.components__color-block.primary-600 {
  background-color: var(--primary-600);
}

.components__color-block.primary-700 {
  background-color: var(--primary-700);
}

.components__color-block.primary-800 {
  background-color: var(--primary-800);
}

.components__color-block.primary-900 {
  background-color: var(--primary-900);
}

.components__color-block.secondary-900 {
  background-color: var(--secondary-900);
}

.components__color-block.secondary-800 {
  background-color: var(--secondary-800);
}

.components__color-block.secondary-700 {
  background-color: var(--secondary-700);
}

.components__color-block.secondary-600 {
  background-color: var(--secondary-600);
}

.components__color-block.secondary-500 {
  background-color: var(--secondary-500);
}

.components__color-block.secondary-400 {
  background-color: var(--secondary-400);
}

.components__color-block.secondary-300 {
  background-color: var(--secondary-300);
}

.components__color-block.secondary-200 {
  background-color: var(--secondary-200);
}

.components__color-block.secondary-100 {
  background-color: var(--secondary-100);
}

.components__color-block.black {
  background-color: var(--black);
}

.components__color-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.components__label {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.components__btn-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  margin-top: 1rem;
  display: grid;
}

.components__btn-wrapper.components__btn-wrapper--dark {
  background-color: var(--gray-600);
  border-color: #0000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.btn {
  background-color: var(--gray-900);
  color: var(--white);
  text-align: center;
  letter-spacing: .06rem;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: 0 2rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  transition: border-radius .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

.btn:hover {
  background-color: var(--gray-800);
  color: var(--white);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.btn:active {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn.btn--outline {
  border-color: var(--gray-900);
  color: var(--gray-900);
  background-color: #0000;
}

.btn.btn--outline:hover {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn.btn--outline:active {
  background-color: var(--gray-800);
}

.btn.btn--light {
  background-color: var(--white);
  color: var(--gray-900);
}

.btn.btn--light:hover {
  color: var(--black);
}

.btn.btn--light:active {
  background-color: var(--primary-300);
}

.btn.btn--light-outline {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.btn.btn--light-outline:hover {
  background-color: var(--white);
  color: var(--gray-900);
}

.btn.btn--light-outline:active {
  border-color: var(--gray-100);
  background-color: var(--gray-100);
}

.btn.btn--primary {
  background-color: var(--primary-600);
}

.btn.btn--primary:hover {
  background-color: var(--primary-400);
}

.btn.btn--primary:active {
  background-color: var(--primary-300);
}

.btn.btn--light-dark {
  background-color: var(--white);
  color: var(--gray-900);
}

.btn.btn--light-dark:hover {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn.btn--light-dark:active {
  background-color: var(--gray-800);
}

.btn.btn--secondary {
  background-color: var(--secondary-600);
}

.btn.btn--secondary:hover {
  background-color: var(--secondary-400);
}

.btn.btn--secondary:active {
  background-color: var(--secondary-300);
}

.components {
  padding-bottom: 100vh;
}

.hero-plax {
  z-index: 0;
  perspective: 250px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  min-height: 860px;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-plax__img--base-layer {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0% 0%;
}

.hero-plax__img--top-layer {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  min-width: 800px;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-plax__content {
  z-index: 3;
  background-image: radial-gradient(circle, #0000004d, #fff0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-plax__heading {
  width: 100%;
  max-width: 1080px;
  margin-bottom: 1rem;
}

.hero__title {
  color: #fff;
  text-align: center;
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 4rem;
  line-height: 1;
}

.hero__subtitle {
  color: var(--white);
  text-align: center;
  letter-spacing: .3rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 300;
}

.nav {
  z-index: 100;
  background-image: linear-gradient(#00000080, #0000);
  height: 6rem;
  position: absolute;
  inset: 0% 0% auto;
}

.nav__container {
  justify-content: center;
  align-items: center;
  height: 6rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav__brand {
  height: 100%;
  max-height: 6rem;
  padding: 1rem .5rem;
  transition: opacity .3s;
  display: flex;
  position: absolute;
}

.nav__brand:hover {
  opacity: .75;
}

.nav__brand:active {
  opacity: .55;
}

.nav__logo {
  object-fit: contain;
  width: 4rem;
  height: 100%;
}

.nav__link-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
}

.nav__link-wrapper.nav__link-wrapper--left {
  justify-content: flex-end;
  margin-left: 0;
}

.nav__link-wrapper.nav__link-wrapper--right {
  justify-content: flex-start;
  margin-right: 0;
}

.nav__link {
  color: var(--white);
  text-align: center;
  letter-spacing: .08rem;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  line-height: 2;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:active, .nav__link:focus {
  color: var(--primary-300);
}

.nav__link.w--current {
  color: var(--primary-400);
}

.nav__link.w--current:hover {
  color: var(--white);
}

.nav__link.w--current:active {
  color: var(--primary-300);
}

.nav__link.nav__link--dropdown {
  color: var(--gray-900);
  white-space: nowrap;
  margin-top: .5rem;
  margin-bottom: .5rem;
  display: inline-block;
}

.nav__link.nav__link--dropdown:hover {
  color: var(--gray-800);
}

.spacer {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 14rem;
  display: flex;
}

.spacer.spacer--sm {
  height: 10rem;
}

.nav__bg {
  background-color: #0b0d0fbf;
  position: absolute;
  inset: 0%;
}

.spacer__svg-embed {
  color: var(--gray-300);
  width: 3.2rem;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.container.container--sm {
  max-width: 1040px;
}

.container.container--article {
  max-width: 75ch;
}

.container.container__footer {
  padding-top: 4rem;
}

.container.cantainer__announcement-bar {
  min-width: 400px;
  padding: 1.5rem 2rem;
}

.img-text {
  justify-content: space-between;
  align-items: center;
  min-height: 510px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.img-text__img-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 860px;
  height: 100%;
  max-height: 478px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-text__img-wrapper.img-text__img-wrapper--left {
  margin-right: auto;
}

.img-text__img-wrapper.img-text__img-wrapper--right {
  margin-left: auto;
}

.img-text__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card {
  background-color: var(--white);
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 20px #363e4f0d, 0 1px 2px #363e4f1c;
}

.card.img-text__card {
  width: 100%;
  max-width: 640px;
  position: absolute;
}

.card.img-text__card.img-text__card--right {
  right: 0%;
}

.card.img-text__card.img-text__card--left {
  width: 45%;
  left: 0;
}

.card.components__card {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.card.featured-post__card {
  padding: 0;
}

.card.card__event {
  margin-bottom: 2rem;
}

.text-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-block.text-block--center {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-block__title.mb-8 {
  margin-bottom: 2rem;
}

.text-block__text {
  margin-bottom: 0;
}

.card__subtitle {
  color: var(--gray-500);
  letter-spacing: .04rem;
  text-transform: uppercase;
  margin-top: .25px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.25;
}

.card__title {
  margin-top: .25rem;
  margin-bottom: .75rem;
  font-size: 1.75rem;
  line-height: 1.3;
}

.card__title.no-subtitle {
  margin-bottom: 2rem;
}

.card__text {
  margin-top: 1.5rem;
}

.img-text__map {
  width: 100%;
  height: 478px;
}

.nav__css-embed {
  display: none;
}

.nav__link-group {
  cursor: default;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
  position: relative;
}

.nav__dropdown {
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 12rem;
  padding: .5rem 1rem;
  display: flex;
  position: absolute;
  top: 90%;
  left: 50%;
  box-shadow: 0 8px 20px #363e4f0d, 0 1px 2px #363e4f1c;
}

.nav__link-text {
  white-space: nowrap;
}

.nav__toggle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.nav__toggle-icon {
  height: 100%;
}

.nav__js-embed, .nav__mobile-title {
  display: none;
}

.footer {
  background-color: var(--gray-900);
  position: relative;
}

.footer__brand {
  flex: 1;
  max-width: 10rem;
}

.footer__content {
  justify-content: space-around;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.footer__group {
  color: #fff9;
}

.footer__title {
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.footer__text {
  margin-bottom: 1rem;
}

.footer__link {
  color: var(--gray-500);
  line-height: 1.8;
  display: block;
}

.footer__link:hover {
  color: var(--white);
}

.footer__colophon {
  color: var(--gray-500);
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer__colophon-content {
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.image {
  opacity: .6;
}

.banner-plax {
  z-index: 0;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  min-height: 30rem;
  max-height: 44rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-plax.banner-plax--short {
  height: 45vh;
  min-height: 20rem;
}

.banner-plax.banner-plax--left {
  justify-content: flex-start;
}

.banner-plax__img {
  opacity: .4;
  object-fit: cover;
  width: 100%;
  height: 110%;
  position: absolute;
  transform: scale(1.2);
}

.banner-plax__img.banner-plax__img--dark {
  opacity: .25;
}

.banner-plax__title {
  color: var(--gray-100);
  margin-bottom: 2rem;
}

.banner-plax__title.banner-plax__title--short {
  margin-bottom: 1rem;
}

.banner-plax__title.policy {
  color: var(--gray-900);
}

.banner-plax__content {
  z-index: 1;
  color: var(--white);
  text-align: left;
  background-image: none;
  align-items: center;
  display: flex;
  position: relative;
}

.banner-plax__content.banner-plax__content--center {
  color: var(--gray-900);
  background-image: none;
}

.banner-plax__content.banner-plax__content--center.banner-plax__content--pt-16 {
  padding-top: 4rem;
}

.banner-plax__content.banner-plax__content--left {
  margin-left: 6rem;
}

.banner-plax__content-wrapper {
  max-width: 42rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.banner-plax__content-wrapper.banner-plax__content-wrapper--center {
  text-align: center;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.banner-plax__cta {
  margin-bottom: 2rem;
}

.footer__social-wrapper {
  grid-column-gap: .875rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 1rem;
  display: grid;
}

.footer__social-link {
  color: var(--gray-500);
  text-align: center;
  width: 1.5rem;
  line-height: 1;
  text-decoration: none;
}

.footer__social-link:hover {
  color: var(--white);
}

.footer__social-link.is-hidden.w--current {
  display: none;
}

.form__wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form__wrapper.form__wrapper--grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: end;
  display: grid;
}

.form__input {
  border-style: none none dashed;
  border-width: 1px;
  border-color: black black var(--gray-800);
  color: var(--gray-800);
  letter-spacing: .04rem;
  background-color: #0000;
  height: 3rem;
  margin-bottom: 0;
  margin-right: 1rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: 0 0 #0000;
}

.form__input:focus {
  box-shadow: 0 2px 0 0 var(--primary-400);
  border-bottom-color: #0000;
}

.form__input::placeholder {
  color: var(--gray-800);
  font-weight: 400;
}

.form__input.form__input--white {
  border-bottom-style: solid;
  border-bottom-color: var(--white);
  color: var(--white);
}

.form__input.form__input--white:focus {
  border-bottom-color: var(--primary-400);
  box-shadow: 0 1px 0 0 var(--primary-400);
}

.form__input.form__input--white::placeholder {
  color: var(--white);
}

.form__input.form__input--mr-0 {
  margin-right: 0;
}

.form__input-flex-wrapper {
  flex: none;
  align-items: flex-end;
  width: 100%;
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  position: relative;
}

.form__input-flex-wrapper.wrap {
  flex-wrap: wrap;
}

.banner-plax__text {
  text-align: left;
  margin-bottom: 2rem;
  font-weight: 400;
}

.featured-post__list {
  display: flex;
}

.featured-post__item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.featured-post__img-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 16rem;
  display: flex;
  overflow: hidden;
}

.featured-post__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.featured-post__img:hover {
  transform: scale(1.05);
}

.featured-post__content {
  background-color: #ffffffb3;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
}

.featured-post__title-link {
  color: var(--gray-900);
  text-decoration: none;
}

.featured-post__pub-date {
  color: var(--gray-500);
  text-transform: uppercase;
  margin-top: .25rem;
  margin-bottom: .5rem;
  font-size: .75rem;
}

.featured-post__title {
  margin-bottom: .25rem;
}

.featured-post__card-wrapper {
  flex: 1;
  width: 90%;
  display: flex;
  transform: translate(0, -4rem);
}

.featured-post__empty-state {
  background-color: var(--gray-200);
  color: var(--gray-500);
  text-align: center;
  padding: 2rem 1rem;
}

.post__rich-text {
  padding-bottom: 2rem;
}

.hero__logo {
  object-fit: contain;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero__logo.hero__logo--vert {
  display: block;
}

.standalone-quote__title {
  text-align: center;
}

.standalone-quote.pt-20 {
  margin-top: 5rem;
}

.standalone-quote__attribution {
  color: var(--gray-500);
  text-align: center;
}

.form__success {
  border: 1px solid var(--primary-500);
  color: var(--gray-800);
  text-align: left;
  background-color: #0000;
  border-radius: 1px;
}

.form__success.form__success--white {
  border-color: var(--white);
  color: var(--white);
}

.form__error {
  border: 1px solid var(--error);
  color: var(--error);
  background-color: #0000;
}

.recaptcha {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.menu-item__name {
  color: var(--gray-800);
  margin-right: .2rem;
  font-weight: 900;
}

.menu-item__ingredients {
  color: var(--gray-600);
  margin-right: .5rem;
  font-size: .875rem;
  font-style: italic;
}

.menu-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.menu-group {
  margin-bottom: 3rem;
}

.menu-item__info {
  align-items: flex-end;
  display: flex;
}

.menu-item__price {
  color: var(--gray-600);
  font-size: .875rem;
  font-style: italic;
}

.menu-item__dots {
  border-top: 1px dotted var(--gray-400);
  flex: 1;
  height: 1px;
  margin-right: .5rem;
  padding-bottom: .35rem;
}

.menu-group__empty {
  display: none;
}

.menu-group__description {
  color: var(--gray-600);
}

.menu-item__simple {
  align-items: flex-end;
  display: flex;
}

.hero-plax__cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.event__title {
  font-family: Playfair Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
}

.event__date {
  color: var(--gray-600);
  margin-top: .5rem;
  font-size: .825rem;
  font-weight: 400;
}

.rich-text-block {
  margin-top: 1.25rem;
}

.announcement-bar {
  z-index: 100;
  position: fixed;
  inset: auto 0% 0%;
}

.announcement-bar.card {
  padding: 0;
  transition: opacity .2s;
  inset: auto 1rem 1rem auto;
}

.announcement-bar.card.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.announcement-bar__link {
  background-color: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  text-decoration: none;
}

.announcement-bar__link:hover {
  color: var(--primary-500);
}

.announcement-bar__text {
  text-align: left;
  max-width: 360px;
  overflow: clip;
}

.announcement-bar__title {
  margin-bottom: .5rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1.2rem;
}

.announcement-bar__title.announcement-bar__title--empty {
  margin-bottom: 0;
}

.announcement-bar__close {
  z-index: 101;
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.announcement-bar__close:hover {
  color: var(--primary-500);
}

.resy-js {
  display: none;
}

.form__textarea {
  border-style: none none dashed;
  border-width: 1px;
  border-color: black black var(--gray-800);
  color: var(--gray-800);
  letter-spacing: .04rem;
  background-color: #0000;
  min-width: 100%;
  max-width: 100%;
  min-height: 8rem;
  margin-bottom: 0;
  margin-right: 1rem;
  padding: .825rem 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  box-shadow: 0 0 #0000;
}

.form__textarea:focus {
  box-shadow: 0 2px 0 0 var(--primary-400);
  border-bottom-color: #0000;
}

.form__textarea::placeholder {
  color: var(--gray-800);
  font-weight: 400;
}

.form__textarea.form__textarea--mr-0 {
  margin-right: 0;
}

.form__columns {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form__title {
  margin-bottom: 1rem;
}

.form__description {
  color: var(--gray-800);
  margin-bottom: 2rem;
}

.footer__colophon-year {
  margin-left: .2rem;
  margin-right: .2rem;
}

.footer__colophon-wrapper {
  background-color: var(--black);
  width: 100%;
  margin-top: 4rem;
}

.menu-item__tag {
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  margin-left: .2rem;
  margin-right: .2rem;
  display: flex;
}

.menu-item__name-wrapper {
  align-items: center;
  margin-right: .3rem;
  display: flex;
}

.announcement-bar__empty {
  padding: 0;
}

.loading {
  z-index: 1000;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading__image {
  object-fit: contain;
  width: 3.5rem;
  display: block;
}

.loading__css {
  display: none;
}

.loading__spinner {
  border-top: 1px solid #000;
  border-bottom: 0 solid #0000;
  border-left: 0 solid #0000;
  border-right: 1px solid #0000;
  border-radius: 7rem;
  width: 7rem;
  height: 7rem;
  position: absolute;
}

.loading__spinner-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu__disclaimer {
  text-align: left;
  font-style: italic;
}

.menu__key {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 0;
  padding-bottom: 1.5rem;
  display: flex;
}

.menu__key-wrapper {
  align-items: center;
  display: flex;
}

.menu__key-icon {
  display: flex;
}

.menu__key-desc {
  margin-left: 4px;
  font-size: .75rem;
  line-height: 1;
}

.menu-item__disclaimer {
  color: var(--error);
  margin-right: .2rem;
  font-weight: 900;
}

.menu__disclaimer-wrapper {
  display: flex;
}

.menu__disclaimer-mark {
  color: var(--error);
  margin-right: .4rem;
  font-weight: 700;
}

.img-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area Area ."
                 ". . ."
                 ". Area-2 Area-2"
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.img-grid__lighbox-link {
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.img-grid__img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .2s, opacity .2s;
}

.img-grid__img:hover {
  opacity: .8;
  transform: scale(1.1);
}

.announcement-bar__text-wrapper {
  grid-column-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.announcement-bar__icon {
  display: flex;
}

.announcement-bar__close-icon {
  z-index: 101;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: .8rem;
  transition: color .2s;
  display: flex;
  position: static;
  inset: 0% 0% auto auto;
}

.announcement-bar__close-icon:hover {
  color: var(--primary-500);
}

.hidden {
  display: none;
}

.rich-text-block-2 {
  text-align: left;
}

.code-embed {
  width: 70%;
  height: 478px;
}

.image-2 {
  max-width: 100%;
}

.livechat-button {
  background-color: #000;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 80%;
  padding: 15px;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.live-icon-chat {
  margin-right: 0;
}

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #383838;
  transform: scale(1.05);
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #b0b0b0;
  margin-bottom: 10px;
  font-size: 12px;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 5px auto auto 5px;
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
}

@media screen and (min-width: 1920px) {
  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }

  .whatsapp-chat {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .hero-plax {
    min-height: 0;
  }

  .hero-plax__img--top-layer {
    min-width: 100%;
  }

  .hero-plax__content {
    background-image: linear-gradient(#0006, #0006);
  }

  .nav {
    height: 4rem;
  }

  .nav__container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 4rem;
    padding-bottom: 4rem;
    position: absolute;
  }

  .nav__brand.w--current {
    text-transform: uppercase;
    height: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    inset: 0% auto auto 0%;
  }

  .nav__logo {
    width: auto;
    height: 2rem;
  }

  .nav__link-wrapper {
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .nav__link-wrapper.nav__link-wrapper--right {
    padding-bottom: 4rem;
  }

  .nav__link {
    letter-spacing: .04rem;
    text-transform: uppercase;
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: 300;
  }

  .nav__link:hover, .nav__link:active, .nav__link:focus {
    color: var(--white);
  }

  .nav__link.w--current {
    text-transform: uppercase;
  }

  .nav__link.nav__link--dropdown {
    color: var(--white);
    text-transform: uppercase;
  }

  .nav__link.nav__link--dropdown:hover, .nav__link.nav__link--dropdown:active {
    color: var(--white);
  }

  .nav__link.nav__link--parent {
    display: none;
  }

  .nav__bg {
    background-color: #0b0d0fe6;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
  }

  .img-text {
    justify-content: center;
    min-height: 0;
    margin-bottom: 2rem;
  }

  .card.img-text__card.img-text__card--right {
    bottom: -10%;
    right: auto;
  }

  .card.img-text__card.img-text__card--left {
    width: 100%;
    inset: auto auto -10%;
  }

  .nav__svg-embed {
    margin-left: .25rem;
  }

  .nav__link-group {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav__dropdown {
    box-shadow: none;
    background-color: #0000;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .nav__link-text {
    text-transform: none;
  }

  .nav__toggle {
    z-index: 101;
    display: flex;
  }

  .nav__mobile-title {
    color: var(--white);
    letter-spacing: .1rem;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Lato, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 4.5rem;
    display: block;
    position: relative;
  }

  .footer__colophon-content {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .banner-plax {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .banner-plax.banner-plax--short {
    height: auto;
  }

  .banner-plax__img {
    height: 100%;
  }

  .banner-plax__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .banner-plax__content.banner-plax__content--center {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .banner-plax__content.banner-plax__content--left {
    width: 100%;
    margin-left: 0;
  }

  .form__input:focus {
    border-bottom-style: solid;
    border-bottom-color: var(--primary-400);
    box-shadow: none;
  }

  .hero__logo {
    padding-left: 4rem;
    padding-right: 4rem;
    display: none;
  }

  .hero__logo.hero__logo--vert {
    height: 100%;
    display: inline-block;
  }

  .menu-item__ingredients {
    width: 100%;
  }

  .menu-item__info, .menu-item__simple {
    flex-wrap: wrap;
  }

  .announcement-bar__close {
    margin-left: .25rem;
  }

  .form__textarea:focus {
    border-bottom-style: solid;
    border-bottom-color: var(--primary-400);
    box-shadow: none;
  }

  .img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "Area Area"
                         ". ."
                         ". ."
                         ". Area-2";
  }

  .img-grid__lighbox-link {
    height: 300px;
  }

  .announcement-bar__close-icon {
    margin-left: .25rem;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .hero-plax {
    height: 100vh;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .spacer {
    height: 10rem;
  }

  .img-text {
    flex-direction: column;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .img-text.img-text--reverse-mobile {
    flex-direction: column-reverse;
  }

  .img-text__img {
    max-height: 320px;
  }

  .card.img-text__card.img-text__card--right, .card.img-text__card.img-text__card--left {
    max-width: 100%;
    position: static;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer__brand {
    flex: 0 auto;
    width: 6rem;
    height: 6rem;
  }

  .footer__content {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer__group {
    margin-top: 2rem;
  }

  .image {
    max-height: 100%;
  }

  .form__wrapper.form__wrapper--grid {
    justify-items: start;
  }

  .featured-post__list {
    flex-direction: column;
  }

  .featured-post__item {
    margin-top: 2rem;
  }

  .featured-post__img-wrapper {
    width: 100%;
  }

  .featured-post__list-wrapper {
    display: flex;
  }

  .featured-post__card-wrapper {
    width: 100%;
    transform: translate(0);
  }

  .hero__logo {
    display: block;
  }

  .hero__logo.hero__logo--vert {
    margin-bottom: 3rem;
  }

  .hero-plax__cta {
    margin-bottom: 20%;
  }

  .announcement-bar.card {
    display: none;
  }

  .loading {
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "Area Area"
                         ". ."
                         ". ."
                         "Area-2 .";
  }

  .img-grid__lighbox-link {
    height: 240px;
  }

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }
}

@media screen and (max-width: 479px) {
  .hero-plax {
    height: 100vh;
  }

  .hero-plax__heading {
    justify-content: center;
    display: flex;
  }

  .form__wrapper.form__wrapper--grid {
    justify-items: stretch;
  }

  .form__input {
    border-radius: 0;
  }

  .form__input-flex-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    margin-top: 0;
    display: grid;
  }

  .hero__logo {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero__logo.hero__logo--vert {
    margin-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-plax__cta {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-bottom: 20%;
  }

  .form__textarea {
    border-radius: 0;
    min-height: 8rem;
  }

  .form__columns {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .menu-item__name-wrapper {
    width: 100%;
  }

  .img-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "Area"
                         "."
                         "."
                         "Area-2";
  }

  .whatsapp-block {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }

  .whatsapp-container {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    position: relative;
  }
}

#w-node-_94dff791-62f4-31d8-61c1-3b20967c0161-00a97727 {
  grid-area: Area;
}

#w-node-_46b41898-6f94-c783-c242-e21b57d11f32-00a97727, #w-node-de25b487-d4c5-606f-eb67-6841014e85fe-00a97727, #w-node-c811fee1-0a44-5b7b-1946-bdabc7019b0d-00a97727, #w-node-d837dec6-5b30-fe24-f564-640ec56cadaf-00a97727, #w-node-_9eb98261-b1fd-4b21-09c6-1bc66812b0f4-00a97727 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c1f73f51-9add-0805-16fd-c20122e9ffc2-00a97727 {
  grid-area: Area-2;
}

#w-node-_67e26ff0-61bf-be83-9c53-e66e9b288798-00a9772c:active {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7237b710-b464-afcc-e458-c12f95c5e900-ad5276a8 {
  grid-area: Area;
}

#w-node-_7237b710-b464-afcc-e458-c12f95c5e902-ad5276a8, #w-node-_7237b710-b464-afcc-e458-c12f95c5e904-ad5276a8, #w-node-_7237b710-b464-afcc-e458-c12f95c5e906-ad5276a8, #w-node-_7237b710-b464-afcc-e458-c12f95c5e908-ad5276a8, #w-node-_7237b710-b464-afcc-e458-c12f95c5e90a-ad5276a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7237b710-b464-afcc-e458-c12f95c5e90c-ad5276a8 {
  grid-area: Area-2;
}

#w-node-e52d9a0e-d543-3200-aecd-c74c9bfc590a-ad5276a8 {
  grid-area: Area;
}

#w-node-e52d9a0e-d543-3200-aecd-c74c9bfc590c-ad5276a8, #w-node-e52d9a0e-d543-3200-aecd-c74c9bfc590e-ad5276a8, #w-node-e52d9a0e-d543-3200-aecd-c74c9bfc5910-ad5276a8, #w-node-e52d9a0e-d543-3200-aecd-c74c9bfc5912-ad5276a8, #w-node-e52d9a0e-d543-3200-aecd-c74c9bfc5914-ad5276a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e52d9a0e-d543-3200-aecd-c74c9bfc5916-ad5276a8 {
  grid-area: Area-2;
}

#w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a94f-78935ccf {
  grid-area: Area;
}

#w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a951-78935ccf, #w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a953-78935ccf, #w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a955-78935ccf, #w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a957-78935ccf, #w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a959-78935ccf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2c9ab61-60a7-a417-28fb-6f8985c8a95b-78935ccf {
  grid-area: Area-2;
}


