/*-- -------------------------- -->
<---        Menu Hero          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #menu-hero {
    min-height: 28.75em;
    padding: 9.375em 0 5.625em;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 1;
  }
  #menu-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 20, 0.55);
    z-index: -1;
  }
  #menu-hero picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  #menu-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #menu-hero .container {
    width: 92%;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  #menu-hero .content {
    max-width: 61.25em;
    margin: auto;
  }
  #menu-hero .topper {
    font-size: 0.75em;
    line-height: 1.5em;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.16666667em;
    margin-bottom: 1.83333333em;
  }
  #menu-hero .topper:before,
  #menu-hero .topper:after {
    content: '';
    width: 2.33333333em;
    height: 1px;
    background-color: var(--primary);
    display: block;
  }
  #menu-hero h1 {
    font-size: clamp(4rem, 14vw, 7rem);
    line-height: .95em;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 0.30357143em;
  }
  #menu-hero p {
    color: #fff;
    font-size: clamp(1.25rem, 4vw, 2rem);
    line-height: 1.45em;
    font-style: italic;
    max-width: 31.25em;
    margin: auto;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #menu-hero {
    min-height: 31.25em;
    padding: 10.625em 0 6.875em;
  }
  #menu-hero h1 {
    font-size: 5.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #menu-hero {
    min-height: 29.6875em;
    padding: 10.625em 0 5.9375em;
  }
  #menu-hero h1 {
    font-size: 5.75em;
  }
}
/*-- -------------------------- -->
<---          Menu Nav         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #menu-nav,
  #menu-nav-spacer {
    display: none;
  }
  /* Prevent section titles from being hidden behind fixed navs */
  .menu-section {
    scroll-margin-top: 7.5em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #menu-nav {
    display: block;
    background-color: #F7F5F1;
    border-bottom: 0.0625em solid rgba(38, 31, 51, 0.08);
    padding: 0.625em 0;
    position: relative;
    z-index: 199999;
    box-shadow: rgba(38, 31, 51, 0.08) 0px 8px 18px;
    /* removes the tiny seam between navs */
    margin-top: -1px;
  }
  #menu-nav.fixed {
    position: fixed;
    left: 0;
    top: 4.9375em;
    /* match desktop nav height */
    width: 100%;
  }
  #menu-nav .container {
    width: 100%;
    margin: auto;
  }
  #menu-nav nav {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #menu-nav nav::-webkit-scrollbar {
    display: none;
  }
  #menu-nav ul {
    width: max-content;
    min-width: 100%;
    padding: 0 1.75em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
  }
  #menu-nav li {
    list-style: none;
    flex: none;
  }
  #menu-nav a {
    display: block;
    padding: 0.83333333em 1.33333333em;
    border: 1px solid transparent;
    border-radius: 83.25em;
    color: var(--bodyText);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: 0.75em;
    line-height: 1em;
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
  }
  #menu-nav a:hover,
  #menu-nav a.active {
    background-color: var(--primaryShade);
    border-color: rgba(184, 154, 104, 0.55);
    color: var(--bodyText);
  }
  #menu-nav-spacer {
    display: none;
  }
  #menu-nav-spacer.active {
    display: block;
  }
  /* Offset anchor jumps for fixed navs */
  .menu-section {
    scroll-margin-top: 10em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #menu-nav ul {
    justify-content: center;
    gap: 1.375em;
    padding: 0 1.5em;
  }
  #menu-nav a {
    font-size: 0.6875em;
    letter-spacing: .26em;
    padding: 0.90909091em 1.27272727em;
  }
  .menu-section {
    scroll-margin-top: 10.625em;
  }
}
/*-- -------------------------- -->
<---       Menu Sections       -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  .menu-section {
    padding: 5em 0;
    background-color: #F7F5F1;
  }
  .menu-section .container {
    width: 92%;
    max-width: 70em;
    margin: auto;
  }
  .menu-section h2 {
    font-size: clamp(3rem, 11vw, 5rem);
    line-height: .95em;
    font-weight: 400;
    color: var(--bodyText);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .12em;
    margin-bottom: 1em;
    position: relative;
  }
  .menu-section h2:after {
    content: '';
    width: 0.65em;
    height: 1px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: -0.325em;
    transform: translateX(-50%);
  }
  .menu-section .menu-grid {
    display: grid;
    gap: 0;
  }
  .menu-section .menu-item {
    padding: 1.375em 0;
    border-bottom: 1px solid rgba(38, 31, 51, 0.1);
  }
  .menu-section .item-heading {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 0.75em;
  }
  .menu-section .item-heading:after {
    content: '';
    height: 1px;
    border-bottom: 1px dotted rgba(38, 31, 51, 0.35);
    grid-column: 2;
    grid-row: 1;
  }
  .menu-section h3 {
    font-size: 1.125em;
    line-height: 1.3em;
    font-weight: 400;
    color: var(--bodyText);
    grid-column: 1;
  }
  .menu-section span {
    font-size: 1.125em;
    line-height: 1em;
    font-weight: 700;
    color: var(--primary);
    grid-column: 3;
  }
  .menu-section p {
    color: rgba(38, 31, 51, 0.72);
    font-size: 0.875em;
    line-height: 1.6em;
    margin-top: 0.71428571em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  .menu-section {
    padding: 6.25em 0;
  }
  .menu-section .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  .menu-section {
    padding: 6.875em 0;
  }
  .menu-section h2 {
    font-size: 3.375em;
  }
}
/*-- -------------------------- -->
<---        Kids Meals         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #kids .section-header {
    text-align: center;
    margin-bottom: 4.375em;
  }
  #kids h2 {
    margin-bottom: 0;
  }
  #kids h2:after {
    display: none;
  }
  #kids .section-description {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    line-height: 1.5em;
    color: var(--primaryDark);
    font-style: italic;
    margin: 0.66666667em auto 0;
    max-width: 23.33333333em;
    position: relative;
    padding-bottom: 1.26666667em;
  }
  #kids .section-description:after {
    content: '';
    width: 1.73333333em;
    height: 1px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  #kids .menu-grid-single {
    width: 100%;
    max-width: 51.25em;
    margin: auto;
    display: block;
  }
  #kids .menu-grid-single .menu-column {
    width: 100%;
    display: block;
  }
  #kids .menu-grid-single .menu-item {
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #kids .section-header {
    margin-bottom: 5em;
  }
  #kids .section-description {
    font-size: 1.875em;
  }
  #kids .menu-grid-single {
    max-width: 51.25em;
    display: block;
    grid-template-columns: none;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #kids .section-header {
    margin-bottom: 5.625em;
  }
  #kids .menu-grid-single {
    max-width: 51.25em;
  }
}
/*-- -------------------------- -->
<---      Hibachi Banner       -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #hibachi-banner {
    min-height: 22.5em;
    padding: 5.625em 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 1;
  }
  #hibachi-banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 20, 0.55);
    z-index: -1;
  }
  #hibachi-banner picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  #hibachi-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #hibachi-banner .container {
    width: 92%;
    max-width: 68.75em;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  #hibachi-banner .topper {
    font-size: 0.75em;
    line-height: 1.5em;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.16666667em;
    margin-bottom: 1.83333333em;
  }
  #hibachi-banner .topper:before,
  #hibachi-banner .topper:after {
    content: '';
    width: 2.33333333em;
    height: 1px;
    background-color: var(--primary);
    display: block;
  }
  #hibachi-banner h2 {
    font-size: clamp(3rem, 10vw, 5.75rem);
    line-height: 1.05em;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #hibachi-banner {
    min-height: 26.25em;
    padding: 6.875em 0;
  }
  #hibachi-banner h2 {
    font-size: 4.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #hibachi-banner {
    min-height: 26.25em;
    padding: 7.5em 0;
  }
  #hibachi-banner h2 {
    font-size: 4.75em;
  }
}
/*-- -------------------------- -->
<---     Hibachi Lunch Meals    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #lunch .section-header {
    text-align: center;
    margin-bottom: 4.375em;
  }
  #lunch h2 {
    margin-bottom: 0;
  }
  #lunch h2:after {
    display: none;
  }
  #lunch .section-description {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    line-height: 1.55em;
    color: var(--primaryDark);
    font-style: italic;
    margin: 0.83333333em auto 0;
    max-width: 31.66666667em;
    position: relative;
    padding-bottom: 1.58333333em;
  }
  #lunch .section-description:after {
    content: '';
    width: 2.16666667em;
    height: 1px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #lunch .section-header {
    margin-bottom: 5em;
  }
  #lunch .section-description {
    font-size: 1.5em;
    max-width: 34.16666667em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #lunch .section-header {
    margin-bottom: 5.625em;
  }
}
/*-- -------------------------- -->
<---      Sushi Transition      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #sushi-transition {
    min-height: 26.25em;
    padding: 7.5em 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #sushi-transition:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 20, 0.48);
    z-index: 1;
  }
  #sushi-transition .background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  #sushi-transition .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  #sushi-transition .container {
    width: 92%;
    max-width: 75em;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  #sushi-transition .topper {
    font-size: 0.75em;
    line-height: 1.5em;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.16666667em;
    margin-bottom: 2em;
  }
  #sushi-transition .topper:before,
  #sushi-transition .topper:after {
    content: '';
    width: 2.16666667em;
    height: 1px;
    background-color: var(--primary);
    display: block;
  }
  #sushi-transition h2 {
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: .95em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    margin: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #sushi-transition {
    min-height: 31.25em;
  }
  #sushi-transition h2 {
    font-size: 4.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #sushi-transition {
    min-height: 35em;
  }
  #sushi-transition h2 {
    font-size: 5.125em;
  }
}
/*-- -------------------------- -->
<---       Sushi Sampler       -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #sampler .section-header {
    text-align: center;
    margin-bottom: 4.375em;
  }
  #sampler h2 {
    margin-bottom: 0;
  }
  #sampler .menu-grid-single {
    width: 100%;
    max-width: 51.25em;
    margin: auto;
    display: block;
  }
  #sampler .menu-grid-single .menu-column {
    width: 100%;
    display: block;
  }
  #sampler .menu-grid-single .menu-item {
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #sampler .section-header {
    margin-bottom: 5em;
  }
  #sampler .menu-grid-single {
    max-width: 51.25em;
    display: block;
    grid-template-columns: none;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #sampler .section-header {
    margin-bottom: 5.625em;
  }
  #sampler .menu-grid-single {
    max-width: 51.25em;
  }
}
/*-- -------------------------- -->
<---   Sushi Nigiri & Sashimi  -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #nigiri-sashimi .section-header {
    text-align: center;
    margin-bottom: 4.375em;
  }
  #nigiri-sashimi h2 {
    margin-bottom: 0;
  }
  #nigiri-sashimi h2:after {
    display: none;
  }
  #nigiri-sashimi .section-description {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
    line-height: 1.5em;
    color: var(--primaryDark);
    font-style: italic;
    margin: 0.83333333em auto 0;
    max-width: 32.5em;
    position: relative;
    padding-bottom: 1.58333333em;
    text-align: center;
  }
  #nigiri-sashimi .section-description:after {
    content: '';
    width: 2.16666667em;
    height: 1px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #nigiri-sashimi .section-header {
    margin-bottom: 5em;
  }
  #nigiri-sashimi .section-description {
    font-size: 1.5em;
    max-width: 34.16666667em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #nigiri-sashimi .section-header {
    margin-bottom: 5.625em;
  }
}
/*-- -------------------------- -->
<---          Catering         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #catering .section-header {
    text-align: center;
    margin-bottom: 4.375em;
  }
  #catering h2 {
    margin-bottom: 0;
  }
  #catering h2:after {
    display: none;
  }
  #catering .section-description {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    line-height: 1.5em;
    color: var(--primaryDark);
    font-style: italic;
    margin: 0.66666667em auto 0;
    max-width: 23.33333333em;
    position: relative;
    padding-bottom: 1.26666667em;
    text-align: center;
  }
  #catering .section-description:after {
    content: '';
    width: 1.73333333em;
    height: 1px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  #catering .button-solid {
    display: block;
    width: fit-content;
    margin: 3.57142857em auto 0;
    background-color: var(--bodyText);
    border: 1px solid var(--bodyText);
    color: #fff;
  }
  #catering .button-solid:before {
    background-color: var(--primary);
  }
  #catering .button-solid:hover {
    color: #000;
    border-color: var(--primary);
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #catering .section-header {
    margin-bottom: 5em;
  }
  #catering .section-description {
    font-size: 1.875em;
  }
  #catering .button-solid {
    margin-top: 4.28571429em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #catering .section-header {
    margin-bottom: 5.625em;
  }
  #catering .button-solid {
    margin-top: 5em;
  }
}
