/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--green-400, #064420);
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--theme, #b58c42);
  outline-offset: 2px;
}

/* Visually hidden — accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.special-photo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.privacy-list {
  padding-left: 1.5em;
  margin-top: 8px;
}
.privacy-list li {
  margin-bottom: 8px;
}

@font-face {
  font-family: Butler;
  src: url('../fonts/Butler.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Butler;
  src: url('../fonts/Butler-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Butler;
  src: url('../fonts/Butler-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Uncut sans;
  src: url('../fonts/Uncut-Sans-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Uncut sans;
  src: url('../fonts/Uncut-Sans-Semibold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Uncut sans;
  src: url('../fonts/Uncut-Sans-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Uncut sans;
  src: url('../fonts/Uncut-Sans-RegularItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Vollkorn';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/Vollkorn-Italic.woff2') format('woff2');
}

:root {
  --neutral-900: #161616;
  --green-300: #306446;
  --green-400: #064420;
  --green-500: #043016;
  --neutral-600: #525252;
  --green-200: #6f937e;
  --neutral-200: #c6c6c6;
  --white: white;
  --theme: #b58c42;
  --neutral-100: #e0e0e0;
  --neutral-50: #f4f4f4;
  --neutral-400: #8d8d8d;
  --black: black;
  --neutral-700: #393939;
  --neutral-800: #262626;
  --milk-200: #fcf7f1;
  --milk-400: #faf1e6;
  --milk-500: #f3e7d9;
  --milk-600: #f3e7d9;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('/images/checkbox-checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--neutral-900);
  font-family: Uncut sans, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Butler, Georgia, sans-serif;
  font-weight: 400;
}

h4, h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Butler, Georgia, sans-serif;
  font-weight: 400;
}

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: "Uncut Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--green-300);
  text-decoration: none;
}

a:hover {
  color: var(--green-400);
}

a:active {
  color: var(--black);
  border-radius: 2px;
  outline: 3px solid var(--theme);
}

a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--theme);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px;
}

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

label {
  color: var(--neutral-600);
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  display: block;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid var(--green-200);
  color: var(--green-300);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Butler, Georgia, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.form-field-text-area {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--neutral-200);
  color: var(--white);
  background-color: #0000;
  min-height: 100px;
  margin-bottom: 16px;
  padding: 8px 16px 16px 8px;
  font-family: Vollkorn, serif;
  font-size: 18px;
}

.form-field-text-area:hover {
  border-bottom-color: var(--theme);
}

.form-field-text-area:focus-visible {
  border-bottom-color: var(--green-400);
}

.form-field-text-area::placeholder {
  color: var(--neutral-400);
}

.horizontal-line {
  background-color: var(--neutral-100);
  width: 100%;
  height: 1px;
}

.horizontal-line._32px-margin {
  margin-top: 32px;
  margin-bottom: 32px;
}

.horizontal-line._48px-margin {
  margin-top: 48px;
  margin-bottom: 48px;
}
.form-field-text-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--neutral-50);
  color: var(--neutral-50);
  background-color: #0000;
  margin-bottom: 20px;
  padding: 16px;
  font-family: Vollkorn, serif;
  font-size: 18px;
  line-height: 1.75em;
}

.form-field-text-input:focus-visible {
  border-bottom-color: var(--theme);
}

.form-field-text-input:focus-visible,
.form-field-text-area:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.form-field-text-input::placeholder {
  color: var(--neutral-400);
  font-size: 16px;
}

.rich-text {
  color: var(--neutral-50);
  margin-bottom: 8px;
}

.rich-text a {
  color: var(--neutral-50);
  text-decoration: none;
}

.rich-text a:hover {
  color: var(--theme);
}

.rich-text a:active {
  color: var(--black);
}

.rich-text h1 {
  font-size: 48px;
  line-height: 1.16em;
}

.rich-text h2 {
  color: var(--white);
  font-family: Vollkorn, serif;
  font-size: 40px;
  line-height: 1.2em;
}

.rich-text h3 {
  font-size: 32px;
  line-height: 1.25em;
}

.rich-text h4 {
  color: var(--theme);
  font-family: Vollkorn, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33em;
}

.rich-text h5 {
  font-size: 20px;
  line-height: 1.55em;
}

.rich-text h6 {
  font-family: Uncut sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4em;
}

.rich-text p {
  color: var(--white);
  font-family: Vollkorn, serif;
  font-size: 18px;
  line-height: 1.75em;
}
.form-wrapper {
  margin-bottom: 16px;
}

.heading {
  font-family: Butler, Georgia, sans-serif;
  font-weight: 400;
}

.heading.h1 {
  color: var(--white);
  margin-bottom: 0;
  font-family: Vollkorn, serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.16em;
}

.heading.h5 {
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
  font-family: Vollkorn, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55em;
}

.heading.h2 {
  color: var(--theme);
  margin-bottom: 16px;
  font-family: Vollkorn, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
}

.heading.h3 {
  color: var(--theme);
  margin-bottom: 16px;
  font-family: Vollkorn, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25em;
}

.heading.h6 {
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Uncut sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4em;
}

.heading.h6.green-300 {
  color: var(--white);
}

.heading.jumbo {
  color: var(--theme);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Vollkorn, serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15em;
}

.text-link {
  color: var(--white);
  align-self: flex-end;
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.text-link:hover {
  color: var(--theme);
}

.form-field {
  color: var(--neutral-50);
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  min-width: 64px;
  min-height: 24px;
  display: flex;
}
.form-success-message {
  background-color: var(--theme);
  color: #000;
  border-radius: 5px;
}

.paragraph {
  color: var(--neutral-50);
  margin-bottom: 16px;
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75em;
}

.paragraph._18px {
  font-size: 18px;
  line-height: 1.56em;
}

.paragraph._28px {
  font-size: 28px;
  line-height: 1.4em;
}

.checkbox {
  border-color: var(--neutral-600);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-right: 8px;
}

.checkbox.w--redirected-checked {
  background-color: var(--green-300);
  background-image: url('../images/Check_icon.svg');
  background-position: 50%;
  background-size: auto;
  border-style: none;
}

.checkbox.w--redirected-focus {
  border-color: var(--neutral-600);
  box-shadow: none;
  outline: 3px solid var(--theme);
}

.form-checkbox {
  margin-bottom: 16px;
}

.spacer._32px {
  width: 32px;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
}

.spacer._16px {
  width: 16px;
  height: 16px;
}

.spacer._24px {
  width: 24px;
  height: 24px;
}

.spacer._48px {
  width: 48px;
  height: 48px;
}

.spacer._64px {
  width: 64px;
  height: 64px;
}

.spacer._8px {
  width: 8px;
  height: 8px;
}

.spacer._80px {
  width: 80px;
  height: 80px;
}

.form-error-message {
  background-color: #dc2626;
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
}
.navigation-bar {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #000000b3;
  font-family: Vollkorn, serif;
  font-weight: 700;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-container {
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1230px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 48px;
  display: flex;
  position: relative;
}

.brand-logo {
  padding: 12px;
  display: inline-block;
}

.brand-logo:hover {
  color: var(--green-400);
}

.brand-logo:active, .brand-logo:focus-visible {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 3px solid var(--theme);
}

.brand-logo.w--current {
  max-width: 100px;
  padding: 0;
}

.brand-logo .image,
.brand-logo.w--current .image {
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
}

.brand-logo.footer {
  margin-top: 0;
  margin-left: 0;
  font-size: 40px;
  display: block;
}

.brand-logo.footer:hover {
  color: var(--green-300);
}

.brand-logo.footer:active {
  outline-offset: 0px;
  outline: 3px solid var(--theme);
}

.brand-logo.footer:focus-visible {
  outline-offset: 0px;
  outline: 3px solid var(--theme);
}

.navigation-menu {
  flex: 1;
  display: flex;
}

.navigation-link {
  color: var(--white);
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px 16px;
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-weight: 400;
  transition: color .3s cubic-bezier(.2, 0, 0, 1);
}

.navigation-link:hover {
  color: var(--theme);
}

.navigation-link:active {
  outline-offset: 0px;
  outline: 3px solid var(--theme);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}

.navigation-link.w--current {
  color: var(--white);
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.navigation-link-wrapper {
  flex: 1;
  justify-content: center;
  display: flex;
}

.logo-wrapper {
  margin-left: 0;
  padding: 8px 0;
}

.page-wrapper {
  width: 100%;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.section {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.padding-top-and-bottom-160px {
  background-image: none;
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.parallax {
  padding-bottom: 80px;
}

.section.milk-300.padding-top-and-bottom-48px {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section.padding-top-160px {
  padding-top: 160px;
  padding-bottom: 40px;
}

.container {
  width: 100%;
  max-width: 1230px;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
}

.hero-heading-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 564px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.aspect-ratio {
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.aspect-ratio._16-9 {
  padding-top: 56%;
}

.aspect-ratio._7-9 {
  padding-top: 128%;
}

.aspect-ratio._1-1 {
  padding-top: 100%;
}

.aspect-ratio._3-1 {
  padding-top: 33%;
}

.image-cover {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-wrapper.small {
  max-width: 160px;
}

.button-wrapper.medium {
  width: 180px;
}

.text-box._48-characters {
  max-width: 48ch;
}

.text-box._40-characters {
  max-width: 40ch;
}

.text-box._32-characters {
  max-width: 32ch;
}

.text-box._64-characters {
  max-width: 64ch;
}

.hero-image.is-01 {
  width: 70%;
  padding-top: 50%;
  padding-left: 60%;
  position: relative;
  overflow: hidden;
}

.hero-image.is-02 {
  width: 36%;
  padding-top: 49%;
  padding-left: 36%;
  position: absolute;
  inset: auto 48px -10% auto;
  overflow: hidden;
}

.hero-image-wrapper {
  margin-top: 48px;
}
.green-300 {
  color: var(--green-300);
}

.heading-swapper-container {
  grid-column-gap: 8px;
  flex-direction: row;
  justify-content: center;
  font-family: Vollkorn, serif;
  display: flex;
}

.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

._2-column-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-column-grid.footer-link-grid {
  grid-column-gap: 12px;
}

._2-column-grid._1-1-5-fr {
  grid-template-columns: 1fr 1.5fr;
}

._2-column-grid.padding-left-and-right-8 {
  padding-left: 8%;
  padding-right: 8%;
}

.text-align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.tag {
  background-color: var(--milk-500);
  color: var(--neutral-800);
  margin-right: 16px;
  padding: 2px 12px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.instagram-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
}

.instagram-image {
  border-radius: 4px;
  overflow: hidden;
}
.tab-links {
  border-bottom: 2px solid var(--neutral-50);
  background-color: var(--black);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.tab-link {
  color: var(--neutral-400);
  text-align: center;
  background-color: #0000;
  margin-left: 4px;
  margin-right: 4px;
  padding: 12px 24px 2px;
}

.tab-link.w--current {
  background-color: var(--theme);
  color: var(--green-500);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.food-menu-item {
  background-color: var(--black);
  outline-color: var(--milk-200);
  outline-offset: -1px;
  border-radius: 5px;
  outline-width: 1px;
  outline-style: solid;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 24px 32px;
  display: flex;
  position: relative;
}

.food-menu-item:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.food-menu-title-content {
  flex-direction: column;
  margin-right: 16px;
  display: flex;
  position: relative;
}

.food-menu-collection {
  column-count: 2;
  column-rule-style: none;
  column-gap: 24px;
}

.chef-special-tag {
  background-color: var(--milk-600);
  color: var(--neutral-900);
  text-transform: uppercase;
  margin-right: 16px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.chef-special-background {
  background-color: var(--theme);
  outline-color: var(--milk-400);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
  position: absolute;
  inset: 0%;
}

.food-menu-item-wrapper {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.tab-content {
  overflow: visible;
}

.food-menu-additional-information {
  grid-column-gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.instagram-image-wrapper {
  flex-direction: column;
  display: flex;
}

.instagram-image-wrapper .heading.h3 {
  text-align: center;
  width: 100%;
}

.instagram-image-wrapper .text-link {
  text-align: center;
  display: block;
  margin-top: 16px;
}

.section .heading.h3 + ._2-column-grid {
  margin-top: 16px;
}

.slideshow-wrapper {
  position: relative;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.restaurant-slideshow {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--theme);
  background: transparent;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.slideshow-btn:hover {
  background: var(--theme);
  color: var(--white);
}

.slideshow-btn svg {
  width: 16px;
  height: 16px;
}

.slideshow-btn:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.slideshow-btn.prev {
  left: -56px;
}

.slideshow-btn.next {
  right: -56px;
}

.slideshow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow-img.is-active {
  opacity: 1;
}

.social-media-wrapper {
  margin-bottom: 16px;
  display: flex;
}

.social-link {
  background-color: var(--theme);
  border-radius: 100%;
  margin-right: 8px;
  padding: 8px;
}

.social-link:hover {
  background-color: var(--milk-600);
}

.social-link:active, .social-link:focus-visible {
  border-radius: 100%;
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.button {
  grid-column-gap: 16px;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-family: Vollkorn, serif;
  font-weight: 700;
  transition: background-color .3s cubic-bezier(.2, 0, 0, 1);
  display: flex;
}

.button:hover {
  background-color: var(--neutral-700);
  color: var(--white);
}

.button:active {
  background-color: var(--black);
  color: var(--white);
  outline: 3px solid var(--theme);
}

.button:focus-visible {
  outline-offset: 0px;
  border-radius: 2px;
  outline: 3px solid var(--theme);
}
.button.form-submit {
  background-image: url('../images/Icon-Right-White.svg');
  background-position: 76%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 72px;
  font-family: Vollkorn, serif;
  transition: background-position .3s cubic-bezier(.2, 0, 0, 1), background-color .3s cubic-bezier(.2, 0, 0, 1);
}

.button.form-submit:hover {
  background-color: var(--neutral-700);
  background-position: 81%;
}

.button.form-submit:active {
  border-radius: 2px;
}

.button.form-submit:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--theme);
}
.button-icon {
  width: 18px;
  height: 18px;
}

.navigation-link-call-to-action {
  background-color: var(--theme);
  color: var(--white);
  border-radius: 5px;
  padding: 8px 16px;
  font-weight: 700;
  transition: color .3s cubic-bezier(.2, 0, 0, 1), background-color .3s cubic-bezier(.2, 0, 0, 1);
}

.navigation-link-call-to-action:hover {
  background-color: var(--neutral-800);
  color: var(--white);
}

.navigation-link-call-to-action:active {
  background-color: var(--black);
  outline-offset: 1px;
  outline: 3px solid var(--theme);
}

.navigation-link-call-to-action:focus-visible {
  outline-offset: 1px;
  border-radius: 2px;
  outline: 3px solid var(--theme);
}

.navigation-link-call-to-action.w--current {
  color: var(--white);
}
.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 90vh;
  max-height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  display: flex;
}

.footer-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-link-list {
  flex-direction: column;
  align-items: flex-start;
  list-style-type: none;
  display: flex;
}

.footer-link {
  color: var(--white);
  align-self: stretch;
  margin-bottom: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Vollkorn, serif;
  transition: color .2s cubic-bezier(.2, 0, 0, 1);
  display: block;
}

.footer-link:hover {
  color: var(--theme);
}

.footer-link.w--current {
  color: var(--neutral-50);
  font-family: Vollkorn, serif;
}

.neweletter-form {
  max-width: 100%;
}

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

._404-not-found {
  font-family: Butler, Georgia, sans-serif;
  font-size: 220px;
  font-weight: 700;
  line-height: 1em;
}

.card-wipe-interaction {
  background-color: var(--black);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}

.breadcrumbs-wrapper {
  grid-column-gap: 8px;
  color: var(--theme);
  align-items: baseline;
  max-width: 200px;
  margin-bottom: 16px;
  margin-left: -8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75em;
  display: flex;
}

.breadcrumbs-wrapper:hover {
  color: var(--theme);
}

.parallax-image-wrapper {
  width: 100%;
  margin-top: 48px;
  position: relative;
}

/* ── Discover gallery ───────────────────────────────── */
.discover-hero {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 10px;
}

.discover-pair {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.discover-pair-item {
  overflow: hidden;
  border-radius: 10px;
}

/* Scroll-reveal entrance */
.discover-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.discover-reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--parallax-y, 0px)) scale(1);
}

.discover-reveal.is-visible:hover {
  transform: translateY(var(--parallax-y, 0px)) scale(1.015);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.body {
  background-color: #000;
}

.image-2 {
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
}

.text-block, .text-block-2 {
  color: var(--white);
}

.link {
  color: var(--theme);
}

.link:hover, .form-block {
  color: var(--neutral-50);
}

.text-block-4 {
  color: var(--white);
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 1920px) {
  .navigation-container {
    max-width: 1700px;
    height: 130px;
    padding: 16px 56px;
  }

  .brand-logo .image,
  .brand-logo.w--current .image {
    max-height: 96px;
  }

  .brand-logo.w--current {
    max-width: 150px;
  }

  .navigation-link {
    font-size: 24px;
    padding: 12px 26px;
    letter-spacing: 0.5px;
  }

  .navigation-link:active {
    font-size: 24px;
  }

  .navigation-link.w--current {
    font-size: 24px;
  }

  .navigation-link-call-to-action {
    font-size: 22px;
    padding: 14px 30px;
    border-radius: 6px;
  }

  /* === CONTENT CONTAINERS === */
  .container {
    max-width: 1700px;
    padding-left: 64px;
    padding-right: 64px;
  }
  .w-container {
    max-width: 1700px;
  }
  .hero-heading-wrapper {
    max-width: 750px;
  }

  /* === SECTION PADDING === */
  .section {
    padding-top: 106px;
    padding-bottom: 106px;
  }
  .section.padding-top-and-bottom-160px {
    padding-top: 213px;
    padding-bottom: 213px;
  }
  .section.padding-top-160px {
    padding-top: 213px;
    padding-bottom: 53px;
  }
  .section.milk-300.padding-top-and-bottom-48px {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* === HEADING TYPOGRAPHY === */
  .heading.jumbo {
    font-size: 72px;
    margin-bottom: 21px;
  }
  .heading.h1 {
    font-size: 64px;
  }
  .heading.h2 {
    font-size: 53px;
    margin-bottom: 21px;
  }
  .heading.h3 {
    font-size: 43px;
    margin-bottom: 21px;
  }
  .heading.h5 {
    font-size: 27px;
    margin-bottom: 11px;
  }
  .heading.h6 {
    font-size: 20px;
    margin-bottom: 11px;
  }

  /* === RICH TEXT TYPOGRAPHY === */
  .rich-text h1 { font-size: 64px; }
  .rich-text h2 { font-size: 53px; }
  .rich-text h3 { font-size: 43px; }
  .rich-text h4 { font-size: 32px; }
  .rich-text h5 { font-size: 27px; }
  .rich-text h6 { font-size: 20px; }
  .rich-text p { font-size: 24px; }

  /* === BODY / PARAGRAPH TEXT === */
  body { font-size: 21px; }
  .paragraph { font-size: 24px; }
  .paragraph._28px { font-size: 37px; }
  .text-link { font-size: 24px; }
  .text-block-4 { font-size: 24px; }
  .breadcrumbs-wrapper {
    font-size: 24px;
    max-width: 266px;
  }
  label { font-size: 19px; }
  blockquote {
    font-size: 24px;
    border-left-width: 7px;
    padding: 13px 27px;
  }

  /* === BUTTONS === */
  .button {
    font-size: 21px;
    padding: 16px 43px;
    border-radius: 7px;
    grid-column-gap: 21px;
  }
  .button.form-submit {
    padding-right: 96px;
    background-size: 28px;
  }
  .button-icon {
    width: 24px;
    height: 24px;
  }
  .button-wrapper.small { max-width: 213px; }
  .button-wrapper.medium { width: 240px; }

  /* === FOOTER === */
  .footer-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }
  .footer-link {
    font-size: 21px;
    margin-bottom: 11px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .image-2 { max-width: 160px; }
  .horizontal-line { height: 2px; }
  .horizontal-line._32px-margin {
    margin-top: 43px;
    margin-bottom: 43px;
  }
  .horizontal-line._48px-margin {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .social-link {
    padding: 11px;
    margin-right: 11px;
  }
  .social-link img {
    width: 32px;
    height: 32px;
  }

  /* === FORM ELEMENTS === */
  .form-field-text-input {
    font-size: 24px;
    padding: 21px;
    margin-bottom: 27px;
  }
  .form-field-text-input::placeholder { font-size: 21px; }
  .form-field-text-area {
    font-size: 24px;
    min-height: 133px;
    padding: 11px 21px 21px 11px;
  }
  .form-field { min-width: 85px; min-height: 32px; }
  .w-checkbox-input--inputType-custom { width: 16px; height: 16px; }
  .checkbox { width: 27px; height: 27px; margin-right: 11px; }
  .w-form-label { font-size: 21px; }

  /* === GRID LAYOUTS === */
  ._2-column-grid { grid-column-gap: 43px; grid-row-gap: 43px; }
  ._2-column-grid.footer-link-grid { grid-column-gap: 16px; }
  .instagram-grid { grid-column-gap: 21px; grid-row-gap: 21px; }
  .food-menu-collection { column-gap: 32px; }
  .food-menu-item { padding: 32px 43px; margin-bottom: 32px; border-radius: 7px; }

  /* === SPACERS === */
  .spacer._8px { width: 11px; height: 11px; }
  .spacer._16px { width: 21px; height: 21px; }
  .spacer._24px { width: 32px; height: 32px; }
  .spacer._32px { width: 43px; height: 43px; }
  .spacer._48px { width: 64px; height: 64px; }
  .spacer._64px { width: 85px; height: 85px; }
  .spacer._80px { width: 106px; height: 106px; }

  /* === SLIDESHOW CONTROLS === */
  .slideshow-btn { width: 53px; height: 53px; border-width: 2px; }
  .slideshow-btn svg { width: 21px; height: 21px; }
  .slideshow-btn.prev { left: -75px; }
  .slideshow-btn.next { right: -75px; }
  .image-cover { border-radius: 13px; }
  .restaurant-slideshow { border-radius: 13px; }

  /* === MISC === */
  ._404-not-found { font-size: 293px; }
  .tag { font-size: 19px; padding: 3px 16px; margin-right: 21px; }
  .tab-link { padding: 16px 32px 3px; font-size: 21px; }
  .tab-links { margin-bottom: 32px; border-bottom-width: 3px; }
  .chef-special-tag { font-size: 16px; }
}

@media screen and (min-width: 2560px) {
  .navigation-container {
    max-width: 2400px;
    height: 180px;
    padding: 20px 80px;
  }

  .brand-logo .image,
  .brand-logo.w--current .image {
    max-height: 140px;
  }

  .brand-logo.w--current {
    max-width: 210px;
  }

  .navigation-link {
    font-size: 36px;
    padding: 16px 36px;
    letter-spacing: 0.5px;
  }

  .navigation-link:active {
    font-size: 36px;
  }

  .navigation-link.w--current {
    font-size: 36px;
  }

  .navigation-link-call-to-action {
    font-size: 32px;
    padding: 20px 44px;
    border-radius: 8px;
  }

  /* === CONTENT CONTAINERS === */
  .container {
    max-width: 2400px;
    padding-left: 96px;
    padding-right: 96px;
  }
  .w-container {
    max-width: 2400px;
  }
  .hero-heading-wrapper {
    max-width: 1128px;
  }

  /* === SECTION PADDING === */
  .section {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .section.padding-top-and-bottom-160px {
    padding-top: 320px;
    padding-bottom: 320px;
  }
  .section.padding-top-160px {
    padding-top: 320px;
    padding-bottom: 80px;
  }
  .section.milk-300.padding-top-and-bottom-48px {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  /* === HEADING TYPOGRAPHY === */
  .heading.jumbo { font-size: 108px; margin-bottom: 32px; }
  .heading.h1 { font-size: 96px; }
  .heading.h2 { font-size: 80px; margin-bottom: 32px; }
  .heading.h3 { font-size: 64px; margin-bottom: 32px; }
  .heading.h5 { font-size: 40px; margin-bottom: 16px; }
  .heading.h6 { font-size: 30px; margin-bottom: 16px; }

  /* === RICH TEXT TYPOGRAPHY === */
  .rich-text h1 { font-size: 96px; }
  .rich-text h2 { font-size: 80px; }
  .rich-text h3 { font-size: 64px; }
  .rich-text h4 { font-size: 48px; }
  .rich-text h5 { font-size: 40px; }
  .rich-text h6 { font-size: 30px; }
  .rich-text p { font-size: 36px; }

  /* === BODY / PARAGRAPH TEXT === */
  body { font-size: 32px; }
  .paragraph { font-size: 36px; }
  .paragraph._28px { font-size: 56px; }
  .text-link { font-size: 36px; }
  .text-block-4 { font-size: 36px; }
  .breadcrumbs-wrapper { font-size: 36px; max-width: 400px; }
  label { font-size: 28px; }
  blockquote { font-size: 36px; border-left-width: 10px; padding: 20px 40px; }

  /* === BUTTONS === */
  .button {
    font-size: 32px;
    padding: 24px 64px;
    border-radius: 10px;
    grid-column-gap: 32px;
  }
  .button.form-submit { padding-right: 144px; background-size: 36px; }
  .button-icon { width: 36px; height: 36px; }
  .button-wrapper.small { max-width: 320px; }
  .button-wrapper.medium { width: 360px; }

  /* === FOOTER === */
  .footer-grid { grid-column-gap: 96px; grid-row-gap: 96px; }
  .footer-link { font-size: 32px; margin-bottom: 16px; padding-top: 8px; padding-bottom: 8px; }
  .image-2 { max-width: 240px; }
  .horizontal-line { height: 2px; }
  .horizontal-line._32px-margin { margin-top: 64px; margin-bottom: 64px; }
  .horizontal-line._48px-margin { margin-top: 96px; margin-bottom: 96px; }
  .social-link { padding: 16px; margin-right: 16px; }
  .social-link img { width: 48px; height: 48px; }

  /* === FORM ELEMENTS === */
  .form-field-text-input { font-size: 36px; padding: 32px; margin-bottom: 40px; }
  .form-field-text-input::placeholder { font-size: 32px; }
  .form-field-text-area { font-size: 36px; min-height: 200px; padding: 16px 32px 32px 16px; }
  .form-field { min-width: 128px; min-height: 48px; }
  .w-checkbox-input--inputType-custom { width: 24px; height: 24px; }
  .checkbox { width: 40px; height: 40px; margin-right: 16px; }
  .w-form-label { font-size: 32px; }

  /* === GRID LAYOUTS === */
  ._2-column-grid { grid-column-gap: 64px; grid-row-gap: 64px; }
  ._2-column-grid.footer-link-grid { grid-column-gap: 24px; }
  .instagram-grid { grid-column-gap: 32px; grid-row-gap: 32px; }
  .food-menu-collection { column-gap: 48px; }
  .food-menu-item { padding: 48px 64px; margin-bottom: 48px; border-radius: 10px; }

  /* === SPACERS === */
  .spacer._8px { width: 16px; height: 16px; }
  .spacer._16px { width: 32px; height: 32px; }
  .spacer._24px { width: 48px; height: 48px; }
  .spacer._32px { width: 64px; height: 64px; }
  .spacer._48px { width: 96px; height: 96px; }
  .spacer._64px { width: 128px; height: 128px; }
  .spacer._80px { width: 160px; height: 160px; }

  /* === SLIDESHOW CONTROLS === */
  .slideshow-btn { width: 80px; height: 80px; border-width: 3px; }
  .slideshow-btn svg { width: 32px; height: 32px; }
  .slideshow-btn.prev { left: -112px; }
  .slideshow-btn.next { right: -112px; }
  .image-cover { border-radius: 20px; }
  .restaurant-slideshow { border-radius: 20px; }

  /* === MISC === */
  ._404-not-found { font-size: 440px; }
  .tag { font-size: 28px; padding: 4px 24px; margin-right: 32px; }
  .tab-link { padding: 24px 48px 4px; font-size: 32px; }
  .tab-links { margin-bottom: 48px; border-bottom-width: 4px; }
  .chef-special-tag { font-size: 24px; }
}

@media screen and (min-width: 3840px) {
  .navigation-container {
    max-width: 3600px;
    height: 280px;
    padding: 32px 120px;
  }

  .brand-logo .image,
  .brand-logo.w--current .image {
    max-height: 240px;
  }

  .brand-logo.w--current {
    max-width: 360px;
  }

  .navigation-link {
    font-size: 64px;
    padding: 24px 56px;
    letter-spacing: 1px;
  }

  .navigation-link:active {
    font-size: 64px;
  }

  .navigation-link.w--current {
    font-size: 64px;
  }

  .navigation-link-call-to-action {
    font-size: 60px;
    padding: 28px 64px;
    border-radius: 12px;
  }

  /* === CONTENT CONTAINERS === */
  .container {
    max-width: 3600px;
    padding-left: 168px;
    padding-right: 168px;
  }
  .w-container {
    max-width: 3600px;
  }
  .hero-heading-wrapper {
    max-width: 1974px;
  }

  /* === SECTION PADDING === */
  .section {
    padding-top: 280px;
    padding-bottom: 280px;
  }
  .section.padding-top-and-bottom-160px {
    padding-top: 560px;
    padding-bottom: 560px;
  }
  .section.padding-top-160px {
    padding-top: 560px;
    padding-bottom: 140px;
  }
  .section.milk-300.padding-top-and-bottom-48px {
    padding-top: 168px;
    padding-bottom: 168px;
  }

  /* === HEADING TYPOGRAPHY === */
  .heading.jumbo { font-size: 189px; margin-bottom: 56px; }
  .heading.h1 { font-size: 168px; }
  .heading.h2 { font-size: 140px; margin-bottom: 56px; }
  .heading.h3 { font-size: 112px; margin-bottom: 56px; }
  .heading.h5 { font-size: 70px; margin-bottom: 28px; }
  .heading.h6 { font-size: 53px; margin-bottom: 28px; }

  /* === RICH TEXT TYPOGRAPHY === */
  .rich-text h1 { font-size: 168px; }
  .rich-text h2 { font-size: 140px; }
  .rich-text h3 { font-size: 112px; }
  .rich-text h4 { font-size: 84px; }
  .rich-text h5 { font-size: 70px; }
  .rich-text h6 { font-size: 53px; }
  .rich-text p { font-size: 63px; }

  /* === BODY / PARAGRAPH TEXT === */
  body { font-size: 56px; }
  .paragraph { font-size: 63px; }
  .paragraph._28px { font-size: 98px; }
  .text-link { font-size: 63px; }
  .text-block-4 { font-size: 63px; }
  .breadcrumbs-wrapper { font-size: 63px; max-width: 700px; }
  label { font-size: 49px; }
  blockquote { font-size: 63px; border-left-width: 18px; padding: 35px 70px; }

  /* === BUTTONS === */
  .button {
    font-size: 56px;
    padding: 42px 112px;
    border-radius: 18px;
    grid-column-gap: 56px;
  }
  .button.form-submit { padding-right: 252px; background-size: 63px; }
  .button-icon { width: 63px; height: 63px; }
  .button-wrapper.small { max-width: 560px; }
  .button-wrapper.medium { width: 630px; }

  /* === FOOTER === */
  .footer-grid { grid-column-gap: 168px; grid-row-gap: 168px; }
  .footer-link { font-size: 56px; margin-bottom: 28px; padding-top: 14px; padding-bottom: 14px; }
  .image-2 { max-width: 420px; }
  .horizontal-line { height: 4px; }
  .horizontal-line._32px-margin { margin-top: 112px; margin-bottom: 112px; }
  .horizontal-line._48px-margin { margin-top: 168px; margin-bottom: 168px; }
  .social-link { padding: 28px; margin-right: 28px; }
  .social-link img { width: 84px; height: 84px; }

  /* === FORM ELEMENTS === */
  .form-field-text-input { font-size: 63px; padding: 56px; margin-bottom: 70px; }
  .form-field-text-input::placeholder { font-size: 56px; }
  .form-field-text-area { font-size: 63px; min-height: 350px; padding: 28px 56px 56px 28px; }
  .form-field { min-width: 224px; min-height: 84px; }
  .w-checkbox-input--inputType-custom { width: 42px; height: 42px; }
  .checkbox { width: 70px; height: 70px; margin-right: 28px; }
  .w-form-label { font-size: 56px; }

  /* === GRID LAYOUTS === */
  ._2-column-grid { grid-column-gap: 112px; grid-row-gap: 112px; }
  ._2-column-grid.footer-link-grid { grid-column-gap: 42px; }
  .instagram-grid { grid-column-gap: 56px; grid-row-gap: 56px; }
  .food-menu-collection { column-gap: 84px; }
  .food-menu-item { padding: 84px 112px; margin-bottom: 84px; border-radius: 18px; }

  /* === SPACERS === */
  .spacer._8px { width: 28px; height: 28px; }
  .spacer._16px { width: 56px; height: 56px; }
  .spacer._24px { width: 84px; height: 84px; }
  .spacer._32px { width: 112px; height: 112px; }
  .spacer._48px { width: 168px; height: 168px; }
  .spacer._64px { width: 224px; height: 224px; }
  .spacer._80px { width: 280px; height: 280px; }

  /* === SLIDESHOW CONTROLS === */
  .slideshow-btn { width: 140px; height: 140px; border-width: 5px; }
  .slideshow-btn svg { width: 56px; height: 56px; }
  .slideshow-btn.prev { left: -196px; }
  .slideshow-btn.next { right: -196px; }
  .image-cover { border-radius: 35px; }
  .restaurant-slideshow { border-radius: 35px; }

  /* === MISC === */
  ._404-not-found { font-size: 770px; }
  .tag { font-size: 49px; padding: 7px 42px; margin-right: 56px; }
  .tab-link { padding: 42px 84px 7px; font-size: 56px; }
  .tab-links { margin-bottom: 84px; border-bottom-width: 7px; }
  .chef-special-tag { font-size: 42px; }
}

@media screen and (min-width: 5120px) {
  .navigation-container {
    max-width: 4800px;
    height: 360px;
    padding: 40px 160px;
  }

  .brand-logo .image,
  .brand-logo.w--current .image {
    max-height: 320px;
  }

  .brand-logo.w--current {
    max-width: 480px;
  }

  .navigation-link {
    font-size: 80px;
    padding: 32px 72px;
    letter-spacing: 1px;
  }

  .navigation-link:active {
    font-size: 80px;
  }

  .navigation-link.w--current {
    font-size: 80px;
  }

  .navigation-link-call-to-action {
    font-size: 76px;
    padding: 36px 84px;
    border-radius: 16px;
  }

  /* === CONTENT CONTAINERS === */
  .container {
    max-width: 4800px;
    padding-left: 216px;
    padding-right: 216px;
  }
  .w-container {
    max-width: 4800px;
  }
  .hero-heading-wrapper {
    max-width: 2538px;
  }

  /* === SECTION PADDING === */
  .section {
    padding-top: 360px;
    padding-bottom: 360px;
  }
  .section.padding-top-and-bottom-160px {
    padding-top: 720px;
    padding-bottom: 720px;
  }
  .section.padding-top-160px {
    padding-top: 720px;
    padding-bottom: 180px;
  }
  .section.milk-300.padding-top-and-bottom-48px {
    padding-top: 216px;
    padding-bottom: 216px;
  }

  /* === HEADING TYPOGRAPHY === */
  .heading.jumbo { font-size: 243px; margin-bottom: 72px; }
  .heading.h1 { font-size: 216px; }
  .heading.h2 { font-size: 180px; margin-bottom: 72px; }
  .heading.h3 { font-size: 144px; margin-bottom: 72px; }
  .heading.h5 { font-size: 90px; margin-bottom: 36px; }
  .heading.h6 { font-size: 68px; margin-bottom: 36px; }

  /* === RICH TEXT TYPOGRAPHY === */
  .rich-text h1 { font-size: 216px; }
  .rich-text h2 { font-size: 180px; }
  .rich-text h3 { font-size: 144px; }
  .rich-text h4 { font-size: 108px; }
  .rich-text h5 { font-size: 90px; }
  .rich-text h6 { font-size: 68px; }
  .rich-text p { font-size: 81px; }

  /* === BODY / PARAGRAPH TEXT === */
  body { font-size: 72px; }
  .paragraph { font-size: 81px; }
  .paragraph._28px { font-size: 126px; }
  .text-link { font-size: 81px; }
  .text-block-4 { font-size: 81px; }
  .breadcrumbs-wrapper { font-size: 81px; max-width: 900px; }
  label { font-size: 63px; }
  blockquote { font-size: 81px; border-left-width: 23px; padding: 45px 90px; }

  /* === BUTTONS === */
  .button {
    font-size: 72px;
    padding: 54px 144px;
    border-radius: 23px;
    grid-column-gap: 72px;
  }
  .button.form-submit { padding-right: 324px; background-size: 81px; }
  .button-icon { width: 81px; height: 81px; }
  .button-wrapper.small { max-width: 720px; }
  .button-wrapper.medium { width: 810px; }

  /* === FOOTER === */
  .footer-grid { grid-column-gap: 216px; grid-row-gap: 216px; }
  .footer-link { font-size: 72px; margin-bottom: 36px; padding-top: 18px; padding-bottom: 18px; }
  .image-2 { max-width: 540px; }
  .horizontal-line { height: 5px; }
  .horizontal-line._32px-margin { margin-top: 144px; margin-bottom: 144px; }
  .horizontal-line._48px-margin { margin-top: 216px; margin-bottom: 216px; }
  .social-link { padding: 36px; margin-right: 36px; }
  .social-link img { width: 108px; height: 108px; }

  /* === FORM ELEMENTS === */
  .form-field-text-input { font-size: 81px; padding: 72px; margin-bottom: 90px; }
  .form-field-text-input::placeholder { font-size: 72px; }
  .form-field-text-area { font-size: 81px; min-height: 450px; padding: 36px 72px 72px 36px; }
  .form-field { min-width: 288px; min-height: 108px; }
  .w-checkbox-input--inputType-custom { width: 54px; height: 54px; }
  .checkbox { width: 90px; height: 90px; margin-right: 36px; }
  .w-form-label { font-size: 72px; }

  /* === GRID LAYOUTS === */
  ._2-column-grid { grid-column-gap: 144px; grid-row-gap: 144px; }
  ._2-column-grid.footer-link-grid { grid-column-gap: 54px; }
  .instagram-grid { grid-column-gap: 72px; grid-row-gap: 72px; }
  .food-menu-collection { column-gap: 108px; }
  .food-menu-item { padding: 108px 144px; margin-bottom: 108px; border-radius: 23px; }

  /* === SPACERS === */
  .spacer._8px { width: 36px; height: 36px; }
  .spacer._16px { width: 72px; height: 72px; }
  .spacer._24px { width: 108px; height: 108px; }
  .spacer._32px { width: 144px; height: 144px; }
  .spacer._48px { width: 216px; height: 216px; }
  .spacer._64px { width: 288px; height: 288px; }
  .spacer._80px { width: 360px; height: 360px; }

  /* === SLIDESHOW CONTROLS === */
  .slideshow-btn { width: 180px; height: 180px; border-width: 7px; }
  .slideshow-btn svg { width: 72px; height: 72px; }
  .slideshow-btn.prev { left: -252px; }
  .slideshow-btn.next { right: -252px; }
  .image-cover { border-radius: 45px; }
  .restaurant-slideshow { border-radius: 45px; }

  /* === MISC === */
  ._404-not-found { font-size: 990px; }
  .tag { font-size: 63px; padding: 9px 54px; margin-right: 72px; }
  .tab-link { padding: 54px 108px 9px; font-size: 72px; }
  .tab-links { margin-bottom: 108px; border-bottom-width: 9px; }
  .chef-special-tag { font-size: 54px; }
}

@media screen and (max-width: 991px) {
  .rich-text h1 {
    font-size: 36px;
    line-height: 1.22em;
  }

  .rich-text h2 {
    font-size: 32px;
    line-height: 1.22em;
  }

  .rich-text h3 {
    font-size: 28px;
    line-height: 1.12em;
  }

  .rich-text h4 {
    font-size: 20px;
    line-height: 1.4em;
  }

  .rich-text h5 {
    font-size: 18px;
    line-height: 1.22em;
  }
  .heading.h1 {
    font-size: 36px;
    line-height: 1.22em;
  }

  .heading.h5 {
    font-size: 18px;
    line-height: 1.22em;
  }

  .heading.h2 {
    font-size: 32px;
    line-height: 1.22em;
  }

  .heading.h3 {
    font-size: 28px;
    line-height: 1.12em;
  }

  .heading.h6 {
    text-transform: uppercase;
  }

  .heading.jumbo {
    font-size: 48px;
  }
  .navigation-bar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #000;
  }

  .navigation-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .navigation-menu {
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .navigation-link {
    background-image: none;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.75em;
  }

  .navigation-link.w--current {
    background-image: none;
    font-size: 36px;
    color: var(--theme);
  }

  .navigation-link:active {
    font-size: 36px;
    outline: none;
  }

  .navigation-link-call-to-action:active {
    outline: none;
  }

  .navigation-link-wrapper {
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }

  .logo-wrapper {
    flex: 1;
  }

  .brand-logo .image,
  .brand-logo.w--current .image {
    max-height: none;
    height: auto;
    width: 120px;
  }

  .brand-logo.w--current {
    max-width: none;
  }

  .hamburger-menu.w-nav-button {
    background-color: var(--theme);
    border-radius: 4px;
  }

  .burger-menu-line {
    background-color: #000;
    width: 24px;
    height: 2px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger-menu-line.top {
    background-color: #000;
    width: 25px;
    height: 4px;
    transform-origin: center center;
  }

  .burger-menu-line.bottom {
    background-color: #000;
    height: 4px;
    transform-origin: center center;
  }

  .hamburger-menu.w--open {
    background-color: var(--theme);
  }

  .hamburger-menu.w--open .burger-menu-line.top {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger-menu.w--open .burger-menu-line.bottom {
    transform: translateY(-6px) rotate(-45deg);
  }

  .navigation-call-to-action-wrapper {
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
  }

  .section.padding-top-and-bottom-160px {
    padding-bottom: 120px;
  }

  .discover-pair {
    gap: 20px;
  }

  .slideshow-wrapper {
    max-width: 83.33%;
  }

  .slideshow-btn.prev {
    left: -44px;
  }

  .slideshow-btn.next {
    right: -44px;
  }

  .section.padding-top-160px {
    padding-top: 140px;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-image.is-01 {
    width: 66%;
  }

  .hero-image.is-02 {
    width: 40%;
    padding-top: 53%;
    bottom: -14%;
    right: 0;
  }

  .hero-image-wrapper {
    position: relative;
  }
  .navigation-link-call-to-action {
    background-image: none;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 5px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding: 16px 24px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }

  .navigation-link-call-to-action.w--current {
    background-image: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .button.form-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  ._404-not-found {
    font-size: 200px;
  }
}

@media screen and (max-width: 767px) {
  .rich-text h1 {
    font-size: 32px;
    line-height: 1.25em;
  }

  .rich-text h2 {
    font-size: 28px;
    line-height: 1.28em;
  }

  .rich-text h3 {
    font-size: 24px;
    line-height: 1.33em;
  }
  .heading.h1 {
    font-size: 32px;
    line-height: 1.25em;
  }

  .heading.h2 {
    font-size: 28px;
    line-height: 1.28em;
  }

  .heading.h3 {
    font-size: 24px;
    line-height: 1.33em;
  }

  .heading.jumbo {
    font-size: 40px;
  }
  .burger-menu-line {
    background-color: #000;
    width: 24px;
    height: 2px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;
  }

  .hamburger-menu.w--open .burger-menu-line.top {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger-menu.w--open .burger-menu-line.bottom {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Prevent page content from hiding behind the fixed bottom button */
  body {
    padding-bottom: 80px;
    background-color: #000;
  }

  .section {
    padding-top: 24px;
    padding-bottom: 60px;
  }

  .section.padding-top-and-bottom-160px {
    padding-top: 16px;
    padding-bottom: 130px;
  }

  .section.padding-top-160px {
    padding-top: 16px;
  }

  .discover-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-heading-wrapper {
    max-width: 464px;
  }

  ._2-column-grid {
    grid-template-columns: 1fr;
  }

  ._2-column-grid.footer-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._2-column-grid._1-1-5-fr {
    grid-template-columns: 1fr;
  }

  ._2-column-grid.padding-left-and-right-8 {
    padding-left: 0%;
    padding-right: 0%;
  }
  .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tab-links {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    place-items: center stretch;
    display: grid;
  }

  .tab-link {
    flex: none;
  }

  .tab-link.w--current {
    border-radius: 5px;
  }

  .food-menu-collection {
    column-count: 1;
  }

  .slideshow-wrapper {
    max-width: 100%;
  }

  .slideshow-btn.prev {
    left: 8px;
  }

  .slideshow-btn.next {
    right: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-link-list {
    align-items: center;
  }

  .social-media-wrapper {
    justify-content: center;
  }

  .brand-logo.footer {
    display: flex;
    justify-content: center;
  }

  .neweletter-form {
    text-align: center;
  }

  .form-wrapper {
    align-items: center;
  }

  .footer-credit-wrapper {
    justify-content: center;
  }

  ._404-not-found {
    font-size: 140px;
  }

  /* ===== MOBILE: Kill the nav bar entirely, show only the logo ===== */
  .navigation-bar {
    position: static;
    background-color: #000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .navigation-container {
    display: block;
    height: auto;
    max-width: none;
    padding: 16px 16px 12px;
    text-align: center;
  }

  .navigation-container::before,
  .navigation-container::after {
    display: none;
  }

  /* Hide the nav links by default; allow menu toggle to override */
  .navigation-menu {
    display: none !important;
  }

  .navigation-menu[data-nav-menu-open] {
    display: flex !important;
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    bottom: -50px;
    z-index: 1000;
    background-color: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: calc(100% + 100px);
    min-height: -webkit-fill-available;
    padding-top: 90px;
    padding-bottom: 150px;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .navigation-menu[data-nav-menu-open] .navigation-link-wrapper {
    flex: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .navigation-menu[data-nav-menu-open] .navigation-link:active {
    font-size: 36px;
    outline: none;
  }

  .navigation-menu[data-nav-menu-open] .navigation-link-call-to-action:active {
    outline: none;
  }

  .navigation-menu[data-nav-menu-open] .navigation-call-to-action-wrapper {
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
    width: auto;
  }

  /* Logo: large and centered */
  .logo-wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  .brand-logo,
  .brand-logo.w--current {
    max-width: none;
    padding: 0;
    display: block;
  }

  .brand-logo .image,
  .brand-logo.w--current .image {
    max-height: none;
    width: 60vw;
    max-width: 280px;
    height: auto;
  }

  /* ===== Hamburger: gold button fixed at bottom center (matches tablet) ===== */
  .hamburger-menu.w-nav-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    top: auto;
    float: none;
    width: auto;
    z-index: 1001;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--theme);
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.25);
    border: 2px solid #000;
  }

  .hamburger-menu.w--open {
    background-color: var(--theme);
  }

  .burger-menu-line {
    background-color: #000;
    width: 24px;
    height: 2px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger-menu-line.top {
    background-color: #000;
    width: 25px;
    height: 4px;
    transform-origin: center center;
  }

  .burger-menu-line.bottom {
    background-color: #000;
    height: 4px;
    transform-origin: center center;
  }

  .hamburger-menu.w--open .burger-menu-line.top {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger-menu.w--open .burger-menu-line.bottom {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media screen and (max-width: 479px) {
  .heading.h5 {
    text-align: center;
  }

  .heading.jumbo {
    font-size: 34px;
  }

  .navigation-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section.padding-top-and-bottom-160px {
    padding-bottom: 60px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-image.is-01 {
    width: 100%;
    padding-top: 68%;
  }

  .hero-image.is-02 {
    display: none;
  }
  .tab-links {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    text-align: center;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    place-items: center stretch;
    display: grid;
  }

  .tab-link {
    border-width: 1px;
    border-color: #000;
  }

  .tab-link.w--current {
    background-color: var(--theme);
  }

  .footer-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-credit-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  ._2-column-grid.footer-link-grid {
    grid-template-columns: 1fr;
  }

  ._404-not-found {
    font-size: 90px;
  }
}

#w-node-aa265124-e8f2-2277-1d48-6fef02531f63-b100abe4 {
  align-self: center;
  text-align: center;
}

#w-node-aa265124-e8f2-2277-1d48-6fef02531f63-b100abe4 .text-box._32-characters,
#w-node-aa265124-e8f2-2277-1d48-6fef02531f63-b100abe4 .button-wrapper {
  margin-left: auto;
  margin-right: auto;
}

#w-node-_0358496c-7eed-1757-0e82-e04665f90716-b100abe4 {
  place-self: center;
  text-align: center;
}

#w-node-_0358496c-7eed-1757-0e82-e04665f90716-b100abe4 .text-box._32-characters,
#w-node-_0358496c-7eed-1757-0e82-e04665f90716-b100abe4 .button-wrapper {
  margin-left: auto;
  margin-right: auto;
}

#w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201a7-6c1201a3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201a8-6c1201a3, #w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201be-6c1201a3, #w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201c0-6c1201a3, #w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201d0-6c1201a3, #w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201e0-6c1201a3, #w-node-_6571a544-df68-4137-6203-1f244610d1f4-139a432b, #w-node-_230d0f8b-47b7-700f-41ff-2659139a4331-139a432b, #w-node-b4d1b42c-59da-2c46-6e4a-d55d62089dff-139a432b, #w-node-_230d0f8b-47b7-700f-41ff-2659139a4335-139a432b, #w-node-_947531b3-2fec-17d7-d6db-ef55a9680c1a-139a432b, #w-node-_230d0f8b-47b7-700f-41ff-2659139a4339-139a432b, #w-node-_68941d9a-4102-71c1-b78f-c961a6e59dea-139a432b, #w-node-_230d0f8b-47b7-700f-41ff-2659139a433d-139a432b, #w-node-_997b8774-95f9-56a1-80ca-c3262d269182-2d26917f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_72a142a8-d299-8f3b-cd06-ae2a8ff40de8-b100abe8 {
  place-self: center;
  text-align: center;
}

#w-node-_72a142a8-d299-8f3b-cd06-ae2a8ff40de8-b100abe8 .text-box._40-characters,
#w-node-_72a142a8-d299-8f3b-cd06-ae2a8ff40de8-b100abe8 .button-wrapper {
  margin-left: auto;
  margin-right: auto;
}

#w-node-_8a703623-593e-bac2-02eb-eeda1f6f168a-b100abe8, #w-node-_158b2072-2158-a74b-4a50-daf143faf4d8-b100abe8, #w-node-fb4df41b-9f40-b5f7-1217-271cd9878204-b100abf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd3130d2-e84b-db6a-5e35-ca21c7d104a8-b100abf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_0358496c-7eed-1757-0e82-e04665f90716-b100abe4 {
    justify-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f8e5244e-d57a-887e-98d2-bc18891eb425-b100abe4 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_37583fa5-edf4-f15d-0a83-b7e76c1201e0-6c1201a3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_72a142a8-d299-8f3b-cd06-ae2a8ff40df5-b100abe8 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_8a703623-593e-bac2-02eb-eeda1f6f168a-b100abe8 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0358496c-7eed-1757-0e82-e04665f90716-b100abe4 {
    justify-self: auto;
  }
}

/* Focus-visible overrides — restore outlines removed by components.css (WCAG 2.4.7) */
.w-input:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.w-nav-button:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.w-tab-link:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

.tab-link:focus-visible {
  outline: 3px solid var(--theme);
  outline-offset: 2px;
}

/* Reduced motion: disable animations and transitions for users who prefer it */
@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;
  }

  .card-wipe-interaction {
    transform: translateX(101%) !important;
  }

  .discover-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}