@font-face {
  font-family: "ABC Diatype";
  src: url("../fonts/ABCDiatype-Bold.eot");
  src: url("../fonts/ABCDiatype-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ABCDiatype-Bold.woff2") format("woff2"), url("../fonts/ABCDiatype-Bold.woff") format("woff"), url("../fonts/ABCDiatype-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: block; }

html,
body,
div,
span,
applet,
object,
iframe,
h1,
.site-footer .email-link span,
.site-header .site-logo span,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

html,
body {
  height: 100%; }

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

p,
h1,
.site-footer .email-link span,
.site-header .site-logo span,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word; }

input,
button,
textarea,
select {
  font: inherit; }

button,
input[type="submit"],
summary {
  cursor: pointer; }

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; }

input,
textarea,
button {
  border-radius: 0;
  border: 0;
  background: none;
  text-transform: inherit; }

details summary::-webkit-details-marker {
  display: none; }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

:root {
  --font: "ABC Diatype";
  --black: #000;
  --white: #fff;
  --beige: #B0A58A;
  --pink: #FF786E;
  --gutter: 30px
  // transitions
  --sec: 0.3s
  --timing: ease; }

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

*:focus {
  outline: none; }

html {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html,
body {
  font-family: var(--font);
  background-color: var(--beige);
  color: var(--white); }

body {
  padding: 15px 25px;
  text-transform: uppercase; }
  body[data-template="home"] {
    height: var(--vh);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden; }

a {
  text-decoration: none;
  color: currentColor; }

h1, .site-footer .email-link span, .site-header .site-logo span, .h1 {
  font-size: 34px;
  line-height: 34px;
  font-weight: bold; }
  @media (max-width: 1100px) {
    h1, .site-footer .email-link span, .site-header .site-logo span, .h1 {
      font-size: 28px;
      line-height: 28px; } }
  @media (max-width: 750px) {
    h1, .site-footer .email-link span, .site-header .site-logo span, .h1 {
      font-size: 20px;
      line-height: 20px; } }
h2, .h2 {
  font-size: 24px;
  line-height: 26px; }
  @media (max-width: 750px) {
    h2, .h2 {
      font-size: 20px;
      line-height: 20px; } }
h3, .h3 {
  font-size: var(--h3); }

p, .p {
  font-size: var(--p);
  line-height: 1.4; }

button {
  color: var(--white); }

img, video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%; }

a span {
  transition: color 0.3s ease; }

@media (min-width: 750px) {
  a:hover span {
    color: var(--black); } }

.tel {
  display: block; }

.flex-between {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.text-center {
  text-align: center; }
  .text-center p {
    line-height: 1; }

.text-right {
  text-align: right; }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.main-content-container {
  opacity: 0;
  animation: fade-in 1s ease 2s forwards;
  -webkit-animation: fade-in 1s ease 2s forwards;
  min-height: 80vh;
  padding: 30px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3; }
  .main-content-container .grid-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    grid-column-gap: 0;
    grid-row-gap: 0; }
    @media (max-width: 750px) {
      .main-content-container .grid-row {
        grid-row-gap: 10px; } }
    .main-content-container .grid-row > div {
      grid-column: span 4; }
      @media (max-width: 750px) {
        .main-content-container .grid-row > div:first-child {
          grid-column: span 6;
          grid-row: 1; }
        .main-content-container .grid-row > div:nth-child(2) {
          grid-column: span 12;
          grid-row: 2; }
        .main-content-container .grid-row > div:nth-child(3) {
          grid-column: span 6;
          grid-row: 1; } }
    .main-content-container .grid-row .order-link {
      display: block;
      width: fit-content;
      color: var(--pink); }
      @media (min-width: 750px) {
        .main-content-container .grid-row .order-link {
          margin-bottom: 80px; } }
    .main-content-container .grid-row .reserve-link {
      transition: color 0.3s ease; }
      @media (min-width: 750px) {
        .main-content-container .grid-row .reserve-link:hover {
          color: var(--black); } }
    .main-content-container .grid-row.top {
      margin-bottom: 20px; }
  .main-content-container .rotate-text-container {
    margin-bottom: 80px; }
    .main-content-container .rotate-text-container a {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: auto;
      grid-column-gap: 0;
      grid-row-gap: 0;
      grid-row-gap: 10px; }
      @media (min-width: 750px) {
        .main-content-container .rotate-text-container a:hover .rotated-text {
          color: var(--black); } }
    .main-content-container .rotate-text-container .rotated-text {
      transition: color 0.3s ease;
      grid-column: span 12;
      width: 100%;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-size: 8.5px; }

.instagram-link {
  margin-bottom: 80px;
  width: 25px;
  height: 25px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; }
  .instagram-link .aspectholder {
    display: block;
    height: 0;
    padding-bottom: 100%;
    position: relative; }

.image-container {
  opacity: 0;
  animation: fade-in 2s ease 0s forwards;
  -webkit-animation: fade-in 2s ease 0s forwards;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 0; }
  .image-container .image-inner {
    width: 50%;
    max-width: 480px; }
    @media (min-width: 750px) {
      .image-container .image-inner {
        grid-column: 5/9; } }
  .image-container .aspectholder {
    height: 0;
    padding-bottom: 135%;
    position: relative; }

.site-header,
.site-footer {
  position: relative;
  z-index: 6; }

.reservation-panel {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  width: 100%;
  z-index: 333;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center; }
  @media (min-width: 1100px) {
    .reservation-panel {
      left: 50%;
      transform: translate(-50%, -50%);
      width: fit-content; } }
  .reservation-panel .reserve-panel-inner {
    width: 100%;
    overflow-x: auto; }
  .reservation-panel.active {
    opacity: 1;
    pointer-events: all; }

.reservation-bg {
  background-color: #000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 222;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  max-height: 100vh;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); }
  .reservation-bg.active {
    opacity: 0.6;
    pointer-events: all; }
