@font-face {
  font-family: Bagnard Sans;
  src: url('../fonts/BagnardSans.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-400-Book.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-500-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-400-BookItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-500-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}

:root {
  --dark-gray: #0e0e0f;
  --white: white;
  --border-color: #0e0e0f1a;
  --alert: #da2424;
  --success: #4ca355;
  --scp-blue: #153460;
}

.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;
}

body {
  background-color: var(--dark-gray);
  color: var(--dark-gray);
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

h3 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}

h4 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h5 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--dark-gray);
  font-weight: 500;
}

ul {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
}

strong {
  font-weight: 500;
}

blockquote {
  border-left: 2px solid var(--dark-gray);
  letter-spacing: -.01em;
  margin-bottom: 0;
  padding: 0 0 0 36px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 28px;
  line-height: 36px;
}

figure {
  margin-bottom: 10px;
}

.navbar-wrapper {
  z-index: 5;
  background-color: var(--white);
  border-left: .1px solid #d3d3d3;
  order: 2;
  height: 100vh;
  position: sticky;
  top: 0;
}

.navbar {
  background-color: var(--white);
  height: 100vh;
}

.navbar-column {
  flex-direction: column;
  justify-content: space-between;
  width: 72px;
  height: 100vh;
  max-height: 100vh;
  display: flex;
}

.menu-button {
  background-color: var(--dark-gray);
  justify-content: center;
  align-items: center;
  padding: 0;
}

.menu-button.w--open {
  background-color: var(--dark-gray);
}

.content-wrapper {
  border-left: 1px solid var(--border-color);
  background-color: var(--white);
  flex-direction: column;
  flex: 1;
  order: 3;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.gallery-wrapper {
  background-color: var(--dark-gray);
  width: 100%;
  max-width: 45vw;
  height: 100vh;
  max-height: 100vh;
  position: sticky;
  top: 0;
}

.container {
  color: var(--white);
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.container.footer-container {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.menu-button-icon-wrapper {
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}

.page-title {
  color: var(--dark-gray);
  margin-bottom: 48px;
  font-family: Jost, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.page-title.no-bottom-space {
  color: var(--dark-gray);
  text-align: left;
  margin-top: 40px;
  font-size: 20px;
  line-height: 30px;
}

.page-title.smaller {
  font-size: 30px;
}

.gallery-logo-wrapper {
  z-index: 2;
  position: absolute;
  top: 48px;
  left: 48px;
}

.gallery {
  width: 100%;
  height: 100vh;
}

.display-none {
  display: none;
}

.gallery-image {
  object-fit: cover;
  background-image: linear-gradient(#00000082, #00000082);
  width: 100%;
  height: 100%;
}

.gallery-image.contact-image, .gallery-image.approach-image, .gallery-image.about-image {
  background-image: linear-gradient(#00000080, #00000080);
}

.page-wrapper {
  z-index: 1;
  display: flex;
  position: relative;
}

.nav-menu {
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: left;
  width: 55vw;
  max-height: 100vh;
}

.nav-link {
  opacity: .5;
  color: var(--white);
  padding: 0;
  text-decoration: none;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.large-heading {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Jost, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}

.nav-link.large-heading.w--current {
  opacity: 1;
  color: var(--white);
  font-family: Jost, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}

.social-links {
  flex-direction: column;
  display: flex;
}

.social-link-item {
  border-top: 1px solid var(--border-color);
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}

.page-content {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  color: var(--dark-gray);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.social-link-icon {
  max-width: 50%;
}

.navbar-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-logo-link {
  display: none;
}

.large-heading {
  letter-spacing: -.02em;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

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

.vertical-grid.menu-grid {
  grid-row-gap: 48px;
}

.nav-content-wrapper {
  background-color: #020013;
  border: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 100px 24px;
  display: flex;
}

.text-small {
  font-size: 14px;
}

.nav-divider {
  border: 1px solid #ffffff40;
  width: 48px;
  height: 1px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.menu-cross-button {
  z-index: 9999;
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s;
  display: none;
  position: fixed;
  top: 48px;
  right: 48px;
}

.menu-cross-button:hover {
  opacity: 1;
}

.button {
  border: 1px solid var(--dark-gray);
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  align-self: flex-start;
  height: 60px;
  padding: 18px 24px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.button.button-large {
  height: 72px;
  padding: 24px 36px;
}

.button.button-large.reserve-button {
  border: 1px solid var(--dark-gray);
  background-color: var(--dark-gray);
  left: -1px;
}

.button.password-button {
  width: 100%;
  margin-top: 12px;
}

.reserve-button-wrapper {
  z-index: 4;
  position: sticky;
  top: 0;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-body {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  margin: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: static;
}

.content-body.justify-content-center {
  text-align: left;
  justify-content: center;
  width: 100%;
}

.no-bottom-space {
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--border-color);
  height: 72px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.text-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  transition: opacity .2s;
}

.text-link:hover {
  opacity: .5;
}

.text-link.medium-text-size {
  font-size: 16px;
}

.button-animation-bg {
  z-index: 1;
  background-color: var(--white);
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

.button-text {
  z-index: 2;
  position: relative;
}

.menu-intro {
  color: var(--dark-gray);
  margin-bottom: 72px;
}

.menu-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.menu-title {
  margin-bottom: 36px;
}

.menu-list-item {
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  padding-bottom: 18px;
  display: flex;
}

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

.form-input {
  border: 1px solid var(--border-color);
  height: 60px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--dark-gray);
}

.form-input::placeholder {
  font-size: 18px;
}

.form-input.text-area-input {
  height: auto;
  min-height: 120px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.field-label {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.text-alert {
  color: var(--alert);
}

.checkbox {
  border-color: var(--dark-gray);
  cursor: pointer;
  border-radius: 0;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  transition: background-color .2s;
}

.checkbox.w--redirected-checked {
  border-color: var(--dark-gray);
  background-color: var(--dark-gray);
  background-image: url('../images/icon-check.svg');
  background-size: 10px 10px;
}

.checkbox-field {
  align-items: flex-start;
  display: flex;
}

.checkbox-label {
  margin-bottom: 0;
  margin-left: 12px;
  font-size: 16px;
  position: relative;
  bottom: 3px;
}

.form-success {
  background-color: var(--success);
  color: var(--white);
  text-align: center;
  padding: 24px;
}

.form-error {
  background-color: var(--alert);
  color: var(--white);
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  font-size: 16px;
}

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

.map {
  margin-top: 60px;
  margin-bottom: 60px;
}

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

.card {
  border: 1px solid var(--border-color);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 36px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.card.blog-card {
  transition: border .2s;
}

.card.blog-card:hover {
  border-color: var(--dark-gray);
}

.blog-card-heading {
  margin-bottom: 0;
}

.blog-sidebar-image {
  object-fit: cover;
  width: 100%;
  max-width: 45vw;
  height: 100vh;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.empty-state {
  background-color: #eee;
  padding: 24px;
}

.gallery-single-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.blog-post-date {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.article figure {
  margin-top: 48px;
  margin-bottom: 48px;
}

.article h5 {
  margin-top: 36px;
}

.article blockquote {
  margin-top: 48px;
  margin-bottom: 48px;
}

.article ul {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 36px;
  margin-bottom: 36px;
  display: grid;
}

.blog-next-post {
  margin-top: 36px;
}

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

.typeface-demo {
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 24px;
  font-weight: 400;
  text-decoration: none;
}

.typeface-text {
  margin-bottom: 12px;
  font-size: 72px;
  line-height: 72px;
}

.typeface-text.bagnard {
  font-family: Bagnard Sans, sans-serif;
}

.style-guide-heading {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.space-bottom {
  text-align: left;
  align-self: center;
  margin-bottom: 18px;
}

.bg-gray {
  background-color: var(--dark-gray);
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}

.icons-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

.menu-item-price {
  margin-left: 24px;
}

.utility-page-content {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  flex: 1;
}

.logo-text {
  color: #fff;
  font-size: 3em;
}

.image {
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-title-2 {
  margin-bottom: 48px;
}

.text-link-2 {
  transition: opacity .2s;
}

.text-link-2:hover {
  opacity: .5;
}

.text-alert-2 {
  color: #da2424;
}

.form-success-2 {
  color: #fff;
  text-align: center;
  background-color: #4ca355;
  padding: 24px;
}

.footer-2 {
  border-top: 1px solid #0e0e0f1a;
  height: 72px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.navbar-2 {
  background-color: #fff;
  height: 100vh;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #0e0e0f;
  border: 1px solid #0e0e0f;
  align-self: flex-start;
  height: 60px;
  padding: 18px 24px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.button-2.button-large {
  height: 72px;
  padding: 24px 36px;
}

.button-2.button-large.reserve-button {
  border: 1px solid #0e0e0f;
  left: -1px;
}

.nav-link-2 {
  opacity: .5;
  color: #fff;
  padding: 0;
  text-decoration: none;
  transition: opacity .2s;
}

.nav-link-2:hover {
  opacity: 1;
}

.nav-link-2.large-heading {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.nav-link-2.large-heading.w--current {
  opacity: 1;
  color: #fff;
}

.social-links-2 {
  flex-direction: column;
  display: flex;
}

.nav-menu-2 {
  color: #fff;
  text-align: left;
  background-color: #0e0e0f;
  width: 55vw;
  max-height: 100vh;
}

.social-link-item-2 {
  border-top: 1px solid #0e0e0f1a;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}

.gallery-wrapper-2 {
  background-color: #0e0e0f;
  width: 100%;
  max-width: 45vw;
  height: 100vh;
  max-height: 100vh;
  position: sticky;
  top: 0;
}

.form-error-2 {
  color: #fff;
  text-align: center;
  background-color: #da2424;
  margin-top: 12px;
  padding: 12px;
  font-size: 16px;
}

.navbar-wrapper-2 {
  z-index: 5;
  background-color: #fff;
  order: 2;
  height: 100vh;
  position: sticky;
  top: 0;
}

.button-animation-bg-2 {
  z-index: 1;
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

.form-input-2 {
  border: 1px solid #0e0e0f1a;
  height: 60px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  transition: border-color .2s;
}

.form-input-2:focus {
  border-color: #0e0e0f;
}

.form-input-2::placeholder {
  font-size: 18px;
}

.form-input-2.text-area-input {
  height: auto;
  min-height: 120px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.checkbox-2 {
  cursor: pointer;
  border-color: #0e0e0f;
  border-radius: 0;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  transition: background-color .2s;
}

.checkbox-2.w--redirected-checked {
  background-color: #0e0e0f;
  background-image: url('../images/icon-check.svg');
  background-size: 10px 10px;
  border-color: #0e0e0f;
}

.menu-button-2 {
  background-color: #0e0e0f;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.menu-button-2.w--open {
  background-color: #0e0e0f;
}

.content-wrapper-2 {
  background-color: #fff;
  border-left: 1px solid #0e0e0f1a;
  flex-direction: column;
  flex: 1;
  order: 3;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.menu-list-item-2 {
  border-bottom: 1px solid #0e0e0f1a;
  justify-content: space-between;
  padding-bottom: 18px;
  list-style-type: disc;
  display: flex;
}

.heading {
  text-transform: none;
  font-size: 30px;
  font-style: italic;
  text-decoration: none;
}

.image-2 {
  display: block;
}

.heading-2 {
  margin-top: 60px;
  font-family: Jost, sans-serif;
}

.paragraph {
  text-align: center;
}

.paragraph.small-text {
  margin-top: 0;
  font-size: 10px;
}

.text-block {
  font-size: 12px;
}

.div-block {
  width: 180px;
  position: absolute;
  inset: 10px auto auto 10px;
}

.div-block.w--current {
  z-index: 100;
}

.logo-section {
  z-index: 100;
  filter: brightness(200%);
  width: 170px;
  padding-left: 0;
  position: fixed;
  inset: 30px auto auto 50px;
}

.logo-section.w--current {
  z-index: 100;
}

.image-3 {
  margin-left: auto;
}

.text-block-2 {
  -webkit-text-stroke-color: var(--dark-gray);
  white-space: normal;
  font-style: normal;
}

.text-block-3 {
  line-height: 28px;
}

.rich-text-block {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.rich-text-block-2 {
  color: var(--dark-gray);
  font-size: 20px;
  line-height: 30px;
}

.footer-3 {
  border-top: 1px solid #0e0e0f1a;
  height: 72px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.container-2 {
  width: 100%;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-2.footer-container {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.container-3 {
  width: 100%;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-3.footer-container {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.text-block-4 {
  font-size: 12px;
}

.heading-3, .heading-4, .heading-5, .heading-6 {
  font-size: 20px;
  font-weight: 400;
}

.paragraph-2 {
  font-size: 16px;
}

.paragraph-3 {
  font-size: 18px;
  line-height: 28px;
}

.container-4 {
  width: 100%;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-4.footer-container {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.small-text-footer {
  font-size: 15px;
}

.text-link-3 {
  padding-left: 0;
  transition: opacity .2s;
}

.text-link-3:hover {
  opacity: .5;
}

.heading-7 {
  color: var(--dark-gray);
  font-family: Jost, sans-serif;
}

.image-4 {
  padding-bottom: 40px;
}

.list-item, .list-item-2 {
  color: var(--dark-gray);
}

.heading-8 {
  color: var(--dark-gray);
  margin-bottom: 220px;
}

.paragraph-4 {
  color: var(--dark-gray);
}

.paragraph-5 {
  margin-bottom: 100px;
}

.paragraph-6 {
  margin-bottom: 140px;
}

.first-page-padding {
  height: 10vh;
}

.button-8 {
  color: #333;
  text-transform: uppercase;
  background-color: #fff;
  border: .7px solid #333;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  margin-top: 20px;
  font-family: Inconsolata, monospace;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 3px #d3d3d3;
}

.text-button-b8 {
  z-index: 1;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.bg-mask-b8 {
  background-color: #333;
  width: 0;
  height: 200px;
  position: absolute;
  inset: auto;
  transform: rotate(37deg);
}

.heading-9 {
  color: var(--dark-gray);
}

.paragraph-7, .list-item-3, .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8 {
  font-size: 20px;
  line-height: 30px;
}

.heading-10, .heading-11 {
  font-size: 30px;
}

.paragraph-8, .paragraph-9, .paragraph-10, .paragraph-11 {
  font-size: 20px;
}

.heading-12, .heading-13 {
  font-size: 30px;
}

.logo-wrapper {
  z-index: 10;
  width: 150px;
  position: absolute;
  inset: 20px auto auto 20px;
}

.logo {
  margin-top: 20px;
  margin-left: 40px;
  padding-left: 0;
}

.logo.invert {
  filter: invert();
}

.paragraph-20 {
  color: var(--dark-gray);
  font-size: 25px;
  line-height: 30px;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.heading-one {
  letter-spacing: .02em;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.3em;
}

.heading-one._404 {
  color: var(--dark-gray);
  font-weight: 400;
}

.padding-vertical {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical._404 {
  color: var(--dark-gray);
  min-height: 70vh;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.primary-button-inner {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.primary-button-background {
  position: absolute;
  inset: 0% auto 0% 0%;
}

.primary-button {
  color: #fff9e9;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid #fff9e9;
  border-radius: 0;
  flex: none;
  padding: .75rem 1.5rem;
  font-size: .75rem;
  transition: color .35s ease-in-out, background-color .35s ease-in-out, border-radius .35s ease-in-out;
  position: relative;
  overflow: hidden;
}

.primary-button:hover {
  color: #253637;
  background-color: #fff9e9;
  border-radius: .75rem;
  font-weight: 400;
}

.primary-button.lightest {
  color: #fff9e9;
  border-color: #c4b282;
}

.primary-button.lightest:hover {
  color: #253637;
  background-color: #c4b282;
}

.text-block-5 {
  color: #000;
}

.slide {
  background-image: linear-gradient(#00000080, #00000080);
}

@media screen and (max-width: 991px) {
  .navbar-wrapper {
    border-right-style: none;
    order: -1;
    height: auto;
    position: static;
  }

  .navbar {
    height: auto;
  }

  .navbar-column {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .content-wrapper {
    border-left-style: none;
    flex: none;
    order: 2;
    min-width: 100%;
    min-height: auto;
  }

  .content-wrapper.blog-post-content-wrapper {
    order: 3;
  }

  .gallery-wrapper {
    background-color: var(--white);
    order: 3;
    max-width: none;
    height: auto;
    max-height: 50vh;
    padding-bottom: 72px;
    display: flex;
    overflow: hidden;
  }

  .gallery-wrapper.blog-post-gallery-wrapper {
    border-top: 1px solid var(--border-color);
    order: 2;
    padding-top: 48px;
    padding-bottom: 0;
    position: relative;
  }

  .menu-button-icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-logo-wrapper {
    display: none;
  }

  .gallery {
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .page-wrapper {
    flex-direction: column;
  }

  .nav-menu {
    width: 100vw;
  }

  .social-links {
    border-bottom: 1px solid var(--border-color);
    flex-direction: row;
    justify-content: space-between;
    display: none;
  }

  .social-link-item {
    border-right: 1px solid var(--border-color);
    flex: 1;
  }

  .navbar-top {
    padding-left: 24px;
  }

  .navbar-logo-link {
    width: 120px;
    display: block;
  }

  .button.button-large.reserve-button {
    text-align: center;
    align-self: stretch;
    left: 0;
  }

  .reserve-button-wrapper {
    flex-direction: column;
    display: none;
    position: relative;
  }

  .content-body {
    flex: none;
  }

  .content-body.justify-content-center {
    flex: 0 auto;
    min-width: 100%;
  }

  .menu-intro {
    margin-bottom: 48px;
  }

  .blog-sidebar-image {
    order: -1;
    display: none;
  }

  .gallery-single-image {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .navbar-2 {
    height: auto;
  }

  .button-2.button-large.reserve-button {
    text-align: center;
    align-self: stretch;
    left: 0;
  }

  .social-links-2 {
    border-bottom: 1px solid #0e0e0f1a;
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-menu-2 {
    width: 100vw;
  }

  .social-link-item-2 {
    border-right: 1px solid #0e0e0f1a;
    flex: 1;
  }

  .gallery-wrapper-2 {
    background-color: #fff;
    order: 3;
    max-width: none;
    height: auto;
    max-height: none;
    padding-bottom: 72px;
  }

  .navbar-wrapper-2 {
    border-right-style: none;
    order: -1;
    height: auto;
    position: static;
  }

  .content-wrapper-2 {
    border-left-style: none;
    flex: none;
    order: 2;
    min-height: auto;
  }

  .first-page-padding {
    height: 0;
  }

  .logo-wrapper {
    display: none;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical._404 {
    padding-top: 11rem;
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 40px;
  }

  blockquote {
    letter-spacing: 0;
    padding-left: 24px;
    font-family: Jost, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-wrapper {
    padding-bottom: 18px;
  }

  .gallery-wrapper.blog-post-gallery-wrapper {
    padding-top: 0;
  }

  .page-title {
    margin-bottom: 24px;
  }

  .large-heading {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 40px;
  }

  .vertical-grid.menu-grid {
    grid-row-gap: 36px;
  }

  .nav-content-wrapper {
    padding-top: 48px;
  }

  .content-body {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .menu-intro {
    margin-bottom: 48px;
  }

  .menu-title {
    margin-bottom: 24px;
  }

  .map {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .article figure {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .article h5 {
    margin-top: 24px;
  }

  .article blockquote {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .article ul {
    grid-row-gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .page-title-2 {
    margin-bottom: 24px;
  }

  .gallery-wrapper-2 {
    padding-bottom: 18px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-one {
    font-size: 2.25rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical._404 {
    padding-top: 9rem;
    padding-bottom: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .gallery-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gallery-wrapper.blog-post-gallery-wrapper {
    padding-top: 18px;
  }

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

  .container.footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    font-size: 30px;
    line-height: 30px;
  }

  .navbar-top.mobile-line-divide {
    border: 1px #000;
    border-bottom: 1px solid #b1b1b1;
  }

  .large-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .vertical-grid.menu-grid {
    grid-row-gap: 24px;
  }

  .content-body, .content-body.justify-content-center, .content-body.justify-content-center.mobile-footer-hight {
    padding-bottom: 0;
  }

  .footer {
    height: auto;
  }

  .footer.hide-for-mobile {
    display: none;
  }

  .menu-intro {
    margin-bottom: 36px;
  }

  .form-input, .form-input::placeholder {
    font-size: 16px;
  }

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

  .card {
    padding: 24px;
  }

  .article figure, .article blockquote {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .typeface-text {
    font-size: 40px;
    line-height: 48px;
  }

  .footer-2 {
    height: auto;
  }

  .gallery-wrapper-2 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-input-2, .form-input-2::placeholder {
    font-size: 16px;
  }

  .footer-3 {
    height: auto;
  }

  .container-2 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container-2.footer-container {
    flex-direction: column;
  }

  .container-3 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container-3.footer-container {
    flex-direction: column;
  }

  .container-4 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container-4.footer-container {
    flex-direction: column;
  }

  .image-4.hidden {
    display: none;
  }

  .paragraph-6 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .paragraph-7 {
    font-size: 18px;
    line-height: 28px;
  }

  .list-item-3 {
    font-size: 18px;
    line-height: 20px;
  }

  .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8 {
    font-size: 18px;
    line-height: 28px;
  }

  .heading-10 {
    font-size: 20px;
    font-weight: 500;
  }

  .heading-11 {
    font-size: 20px;
    line-height: 25px;
  }

  .heading-12, .heading-13 {
    font-size: 20px;
  }

  .paragraph-12, .paragraph-13, .paragraph-14 {
    font-size: 18px;
  }

  .paragraph-15 {
    font-size: 20px;
  }

  .paragraph-16 {
    font-size: 18px;
  }

  .paragraph-17, .paragraph-18, .paragraph-19 {
    font-size: 16px;
    line-height: 26px;
  }

  .heading-14 {
    font-family: Jost, sans-serif;
    font-size: 20px;
    line-height: 25px;
  }

  .heading-15, .heading-16, .heading-17 {
    font-family: Jost, sans-serif;
    font-size: 20px;
    line-height: 30px;
  }

  .heading-18 {
    font-family: Jost, sans-serif;
    font-size: 20px;
  }

  .heading-19, .heading-20, .heading-21, .heading-22 {
    font-family: Jost, sans-serif;
    font-size: 20px;
    line-height: 30px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-2 {
    padding-bottom: 20px;
  }
}


@font-face {
  font-family: 'Bagnard Sans';
  src: url('../fonts/BagnardSans.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-400-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-500-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-400-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-500-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}