@charset "UTF-8";
/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  height: auto; }

html {
  min-height: 100%;
  position: relative; }

body {
  position: static; }

/* Placeholder styling */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #555; }

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #555; }

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #555; }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #555; }

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  /* STYLES GO THERE */
  margin-bottom: 0; }

/* -----------------------------------------
   Typography
----------------------------------------- */
body {
  color: #333;
  font-family: "Montserrat", Arial, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: inherit;
  color: inherit; }

h1 {
  /*basic heading styles*/ }

h2 {
  /*basic heading styles*/ }

h3 {
  /*basic heading styles*/ }

h4 {
  /*basic heading styles*/ }

h5 {
  /*basic heading styles*/ }

h6 {
  /*basic heading styles*/ }

p {
  /*basic paragraph styles*/ }
  p:empty {
    display: none; }
  p a {
    text-decoration: underline; }

ul {
  /*basic list styles*/ }
  ul li {
    /*basic list-item styles*/ }

a {
  color: #1a608b;
  transition: all .3s ease-in-out; }
  a:hover, a:focus {
    /*basic hover and focus effects*/
    color: #0a2535; }

/* Clearfix */
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: "";
    display: table;
    height: 0;
    overflow: hidden; }
  .clearfix:after {
    clear: both; }

/* Align Middle */
.align-middle {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%; }

/* 404 page */
.not-found {
  padding-top: 100px;
  padding-bottom: 100px; }
  .not-found .label {
    text-decoration: none;
    cursor: pointer;
    background-color: #1a608b; }
    .not-found .label:hover {
      background-color: #144869;
      color: #fff; }

/* -----------------------------------------
   Buttons
----------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  min-height: 56px;
  padding: 12px 28px;
  border: 0;
  font-family: "Rye", Georgia, serif;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background-color .2s, color .2s;
  font-weight: 600;
  letter-spacing: 2px; }
  .button span {
    font-weight: 900;
    font-family: fantasy;
    font-size: 24px;
    line-height: 24px;
    position: relative;
    transform: translateY(-3px); }
  .button:hover, .button:focus-visible {
    text-decoration: none;
    transform: translateY(-2px); }

.button-primary {
  background: var(--yellow);
  color: #111; }

.button-secondary {
  border: 2px solid var(--white);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white); }
  .button-secondary:hover, .button-secondary:focus-visible {
    background: var(--white);
    color: #111; }

.button-dark {
  background: #111;
  color: var(--white); }

.button-outline-yellow {
  border: 2px solid var(--yellow);
  color: var(--yellow); }
  .button-outline-yellow:hover, .button-outline-yellow:focus-visible {
    background: var(--yellow);
    color: #111; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem; }

@media (max-width: 480px) {
  .button-row {
    flex-direction: column;
    align-items: stretch; }
  .button {
    width: 100%; } }

/* -----------------------------------------
   Textured Section
----------------------------------------- */
.section-texture {
  background-color: #000;
  background-image: linear-gradient(rgba(15, 15, 16, 0.54), rgba(15, 15, 16, 0.64)), url("../images/charcoal_texture_01.jpg");
  background-size: cover; }

.decor-right {
  display: flex;
  align-items: center;
  gap: 20px; }
  .decor-right:after {
    content: '';
    width: 44px;
    height: 12px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/decore-right-1.png); }

.decor-left {
  display: flex;
  align-items: center;
  gap: 20px; }
  .decor-left:before {
    content: '';
    width: 44px;
    height: 12px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/decore-left-1.png); }

/* -----------------------------------------
   Common template styles moved from style.css
----------------------------------------- */
:root {
  --black: #0f0f10;
  --charcoal: #1c1c1e;
  --white: #f5f3ef;
  --red: #a80d0d;
  --yellow: #ffc400;
  --gray: #a6a3a0;
  --content: 1280px;
  --display: "Rye", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif; }

* {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased; }

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

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

p {
  margin: 0 0 1.25rem; }

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .025em;
  text-transform: uppercase; }

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem); }

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem); }

button,
input,
textarea {
  font: inherit; }

.shell {
  width: calc(100% - 96px);
  max-width: var(--content);
  margin-inline: auto; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.eyebrow {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  min-height: 56px;
  padding: 12px 28px;
  border: 0;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background-color .2s, color .2s; }
  .button:hover, .button:focus-visible {
    transform: translateY(-2px); }

.button-primary {
  background: var(--yellow);
  color: #111; }

.button-secondary {
  border: 2px solid var(--white);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white); }

.button-dark {
  background: #111;
  color: var(--white); }

.button-outline-yellow {
  border: 2px solid var(--yellow);
  color: var(--yellow); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem; }

@media (max-width: 1050px) {
  .shell {
    width: calc(100% - 48px); } }

@media (max-width: 767px) {
  .shell {
    width: calc(100% - 40px); } }

@media (max-width: 480px) {
  .button-row {
    flex-direction: column;
    align-items: stretch; }
  .button {
    width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important; } }

/* -----------------------------------------
   Header
----------------------------------------- */
body.nav-open {
  overflow: hidden; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -5rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--yellow);
  color: #111; }
  .skip-link:focus {
    top: 1rem; }

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--black);
  background-size: 500px; }
  .site-header .shell {
    width: 100%;
    max-width: 80%; }
    @media screen and (max-width: 1024px) {
      .site-header .shell {
        max-width: 90%; } }

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 320px) 1fr auto;
  align-items: center;
  gap: 3.5rem;
  min-height: 106px; }

.site-logo {
  display: inline-block; }
  .site-logo img {
    width: 100%;
    max-width: 310px;
    max-height: 82px;
    object-fit: contain;
    object-position: left center; }

.custom-logo {
  width: 100%;
  max-width: 310px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center; }

.site-nav {
  justify-self: center; }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none; }
  .site-nav a {
    font-family: var(--display);
    font-size: .95rem;
    text-transform: uppercase; }
    .site-nav a:hover {
      color: var(--yellow); }
  .site-nav .current-menu-item > a {
    color: var(--yellow); }

.header-order {
  white-space: nowrap; }

.nav-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: none; }
  .nav-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px;
    background: var(--white); }

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 220px 1fr auto;
    gap: 1.5rem; }
  .site-nav ul {
    gap: 1.25rem; }
  .header-order {
    padding-inline: 18px; } }

@media (max-width: 991px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 82px; }
  .site-logo img,
  .custom-logo {
    max-width: 205px;
    max-height: 65px; }
  .nav-toggle {
    display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 24px;
    border-top: 1px solid #333;
    background: #111; }
    .site-nav.is-open {
      display: block; }
    .site-nav ul {
      flex-direction: column;
      align-items: flex-start; }
  .header-order {
    display: none; } }

/* -----------------------------------------
   Home page slider
----------------------------------------- */
.slick-slider:not(.slick-initialized) .slick-slide:not(:first-child) {
  display: none; }

#home-slider .slick-slide {
  position: relative;
  height: 500px;
  /*define the height of slide*/
  transition: height .3s ease; }

#home-slider .slider-caption {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  max-width: 500px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%); }
  #home-slider .slider-caption p, #home-slider .slider-caption h3 {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); }

#home-slider .videoHolder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden; }

#home-slider .video, #home-slider .responsive-embed {
  position: absolute;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%; }

#home-slider .responsive-embed {
  margin-bottom: 0; }

@media only screen and (max-width: 1024px) {
  #home-slider .slick-slide {
    height: 400px;
    /*define the height of slide*/ } }

@media only screen and (max-width: 640px) {
  #home-slider .slick-slide {
    height: 300px;
    /*define the height of slide*/ } }

/* -----------------------------------------
   Home Hero
----------------------------------------- */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  .home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.5) 54%, rgba(5, 5, 5, 0.2) 100%);
    z-index: 3; }
  .home-hero .shell {
    width: 100%;
    max-width: 80%; }
  .home-hero .button {
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 24px 36px; }
  @media (max-width: 1199px) and (min-width: 992px) {
    .home-hero {
      min-height: 510px;
      overflow: visible; }
      .home-hero .hero-content h1 {
        font-size: 62px; }
      .home-hero .hero-content p:not(.eyebrow) {
        font-size: 22px; }
      .home-hero .hero-content .button {
        font-size: 1.1rem;
        padding: 18px 30px; }
      .home-hero .hero-content:before {
        background: linear-gradient(90deg, rgba(5, 5, 5, 0.88) 5%, rgba(5, 5, 5, 0.6) 40%, rgba(5, 5, 5, 0.1) 100%); } }

.hero-content {
  position: relative;
  z-index: 5; }
  .hero-content > p:not(.eyebrow) {
    max-width: 590px;
    font-size: 1.5rem; }

.hero-art {
  position: absolute;
  z-index: 4;
  top: 0;
  left: -100px;
  width: 460px;
  height: 650px;
  background: url("../images/red_pizza_corner.png") center/contain no-repeat;
  opacity: .5; }
  @media screen and (max-width: 767.99px) {
    .hero-art {
      opacity: .3; } }

@media (max-width: 767px) {
  .home-hero {
    min-height: 620px; }
  .hero-art {
    left: -180px; } }

/* -----------------------------------------
   About Section
----------------------------------------- */
.about-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden; }
  .about-section .container {
    max-width: 80%;
    padding: 0; }
    @media screen and (max-width: 1024px) {
      .about-section .container {
        max-width: 90%; } }
  .about-section__wrapper {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 90%; }
  .about-section .eyebrow {
    font-size: 24px; }
    @media screen and (max-width: 1100px) and (min-width: 992px) {
      .about-section .eyebrow {
        font-size: 21px; } }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      .about-section .eyebrow {
        font-size: 18px; } }
  .about-section__title {
    font-size: 44px; }
    @media screen and (max-width: 1024px) {
      .about-section__title {
        font-size: 38px; } }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      .about-section__title {
        font-size: 33px; } }
  .about-section__content p:not(.script-note) {
    font-size: 18px;
    line-height: 1.6; }
    @media screen and (max-width: 1024px) {
      .about-section__content p:not(.script-note) {
        font-size: 16px; } }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 70px; }

.framed-image {
  margin: 0;
  border: 1px solid rgba(255, 196, 0, 0.35);
  box-shadow: 18px 18px 0 rgba(168, 13, 13, 0.2); }
  .framed-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover; }

.about-section {
  position: relative; }
  .about-section:after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 500px;
    height: 600px;
    background: url("../images/decor-right.png") center/contain no-repeat;
    opacity: .3;
    z-index: 2; }
  .about-section p {
    max-width: 630px; }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      .about-section p {
        font-size: 33px; } }

.script-note {
  color: var(--yellow);
  font-family: "Allison", cursive;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1; }

@media (max-width: 1050px) {
  .split-layout {
    gap: 40px; } }

@media (max-width: 767px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 35px; }
  .about-section {
    padding: 60px 0; } }

/* -----------------------------------------
   Menu Break
----------------------------------------- */
.menu-break {
  position: relative;
  padding: 70px 20px;
  overflow: hidden;
  text-align: center;
  background-image: linear-gradient(rgba(20, 10, 1, 0.4), rgba(20, 10, 1, 0.54)), url(../images/charcoal_texture_2.png); }
  .menu-break .shell {
    position: relative;
    z-index: 2; }
  .menu-break p {
    max-width: 660px;
    margin: 0 auto 1.75rem; }
  .menu-break:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.5) 54%, rgba(5, 5, 5, 0) 100%);
    opacity: .5; }
  .menu-break .button {
    padding: 14px 60px; }

.menu-art {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain; }

.menu-art--left {
  top: -70px;
  bottom: -70px;
  width: 600px;
  left: -5%;
  background-image: url("../images/odd-soul-round-pizza-red-only-transparent.png");
  background-position: left center;
  opacity: .3; }
  @media screen and (max-width: 640px) {
    .menu-art--left {
      left: -25%;
      width: 340px;
      opacity: .2; } }

.menu-art--right {
  width: 500px;
  right: -4%;
  height: 330px;
  top: auto;
  bottom: 0;
  background-image: url("../images/odd-soul-pizza-slice-side-transparent.png");
  background-position: right center;
  opacity: .5; }
  @media screen and (max-width: 640px) {
    .menu-art--right {
      opacity: .3;
      height: 210px;
      width: 340px; } }

/* -----------------------------------------
   Reviews Section
----------------------------------------- */
.reviews-section {
  padding: 30px 0;
  background: #111; }
  .reviews-section .stars {
    font-size: 30px;
    line-height: 1; }
  .reviews-section .shell {
    width: 80%; }
    @media screen and (max-width: 1500px) {
      .reviews-section .shell {
        width: 90%; } }

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 2rem;
  margin-bottom: 25px; }
  .section-title-row h2 {
    font-size: 30px;
    margin-bottom: 0;
    padding: 0 190px; }
    @media screen and (max-width: 1200px) and (min-width: 767px) {
      .section-title-row h2 {
        padding: 0 190px 0 0;
        max-width: 620px;
        text-align: center; } }
    @media screen and (max-width: 766.99px) {
      .section-title-row h2 {
        text-align: center;
        padding: 0; } }
    @media screen and (max-width: 766.99px) {
      .section-title-row h2 {
        font-size: 25px; } }
  .section-title-row .review-score {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }
    @media screen and (max-width: 766.99px) {
      .section-title-row .review-score {
        position: relative;
        text-align: center;
        margin: 0 auto; } }

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 8px; }

.review-stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  font-size: 20px; }

.review-stars__empty {
  color: #fff; }

.review-stars__filled {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating-width);
  overflow: hidden;
  color: #ffd700;
  white-space: nowrap; }

.review-score b, .stars {
  color: var(--yellow); }

.reviews-grid {
  position: relative;
  padding: 0 42px; }
  .reviews-grid:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px; }
  .reviews-grid .slick-list {
    margin: 0 -11px; }
  .reviews-grid .slick-track {
    display: flex;
    align-items: stretch; }
  .reviews-grid .slick-slide {
    display: flex !important;
    flex-direction: column;
    height: auto;
    margin: 0 11px; }
  .reviews-grid article {
    padding: 20px;
    border-radius: 12px;
    background: var(--white);
    color: #181818; }
  .reviews-grid strong {
    margin-top: auto;
    font-size: .85rem;
    padding-right: 40px;
    position: relative; }
    .reviews-grid strong:after {
      content: "";
      position: absolute;
      bottom: -5px;
      right: -5px;
      height: 30px;
      width: 30px;
      background-size: contain;
      background-image: url(../images/icons8-google-48.png);
      z-index: 5; }

.review-card__content {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3; }
  .review-card__content p {
    margin-bottom: 0; }

.review-card.is-expanded .review-card__content {
  display: block;
  overflow: visible;
  -webkit-line-clamp: initial;
  line-clamp: initial; }

.review-card__toggle {
  align-self: flex-start;
  margin: 4px 0 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  line-height: 1.2;
  text-transform: lowercase;
  cursor: pointer; }
  .review-card__toggle:hover, .review-card__toggle:focus {
    color: #111; }

.reviews-slider-arrow--prev {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon_arrow-left.svg); }

.reviews-slider-arrow--next {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon_arrow-right.svg); }

.reviews-slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  opacity: .7;
  background-color: transparent;
  border: none; }
  .reviews-slider-arrow:hover, .reviews-slider-arrow:focus {
    opacity: 1; }

.reviews-slider-arrow--prev {
  left: 0; }

.reviews-slider-arrow--next {
  right: 0; }

.text-link {
  display: block;
  margin-top: 20px;
  color: var(--yellow);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase; }
  .text-link:hover, .text-link:focus {
    color: #fff;
    text-decoration: none; }

@media (max-width: 767px) {
  .reviews-grid {
    padding: 0 36px; }
    .reviews-grid:not(.slick-initialized) {
      grid-template-columns: 1fr; }
  .section-title-row {
    flex-direction: column;
    align-items: flex-start; } }

/* -----------------------------------------
   Gallery Strip
----------------------------------------- */
.gallery_strip {
  position: relative;
  overflow: hidden; }
  .gallery_strip__gallery:not(.slick-initialized) {
    display: flex; }
    .gallery_strip__gallery:not(.slick-initialized) .gallery_strip__item {
      flex: 0 0 20%; }
  .gallery_strip__gallery .slick-track {
    display: flex; }
  .gallery_strip__gallery .slick-slide {
    height: auto; }
  .gallery_strip__item {
    height: 300px; }
  .gallery_strip__link {
    display: block;
    height: 100%; }
  .gallery_strip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .gallery_strip .button {
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 24px;
    line-height: 1; }
    .gallery_strip .button:hover, .gallery_strip .button:focus-visible {
      background-color: #ffc400; }
  .gallery_strip__btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: calc(100% - 30px);
    pointer-events: none; }
    .gallery_strip__btn .button {
      pointer-events: auto; }

@media (max-width: 767px) {
  .gallery_strip__item {
    height: 220px; }
  .gallery_strip .button {
    font-size: 18px; } }

/* -----------------------------------------
   Newsletter
----------------------------------------- */
.newsletter {
  padding: 34px 16px;
  background: var(--yellow);
  color: #111;
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg-image.png);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat; }
  .newsletter:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -26px;
    width: 250px;
    height: 170px;
    background-image: url(../images/decorative-burgundy-skull.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .8;
    z-index: 2; }
  .newsletter .newsletter-inner {
    position: relative;
    z-index: 5; }
  .newsletter .shell {
    width: 100%;
    max-width: 1400px; }
    @media screen and (max-width: 1024px) {
      .newsletter .shell {
        display: flex;
        flex-direction: column;
        gap: 30px; } }
  .newsletter h2, .newsletter p {
    letter-spacing: 0;
    margin: 0; }
  .newsletter h2 {
    font-size: 50px; }
    @media screen and (max-width: 640px) {
      .newsletter h2 {
        text-align: center;
        font-size: 40px; } }
  .newsletter p {
    font-weight: 600; }
  .newsletter form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px; }
  .newsletter input {
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    border: 1px solid #7d6400; }
  .newsletter .gform_wrapper .gfield.hidden_label label {
    display: none; }
  .newsletter .gform_wrapper .gfield input[type="email"] {
    padding: 8px 16px; }
  .newsletter .gform_wrapper .gform-footer {
    padding: 0;
    height: 56px; }
    .newsletter .gform_wrapper .gform-footer button {
      background-color: #000;
      color: #fff;
      padding: 12px 60px; }
  .newsletter .gform_wrapper.gravity-theme .gform_footer, .newsletter .gform_wrapper.gravity-theme .gform_page_footer {
    padding: 0; }

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px; }

@media (max-width: 767px) {
  .newsletter-inner, .newsletter form {
    grid-template-columns: 1fr; } }

/* -----------------------------------------
   Internal Page Hero
----------------------------------------- */
.page-hero {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-size: cover;
  text-align: center;
  min-height: 268px; }
  .page-hero:before, .page-hero:after {
    content: "";
    position: absolute;
    top: auto;
    bottom: -5px;
    opacity: .5; }
  .page-hero:before {
    width: 440px;
    height: 300px;
    left: -30px;
    background: url("../images/hero-left.png") center/contain no-repeat; }
  .page-hero:after {
    width: 740px;
    height: 450px;
    right: -30px;
    background: url("../images/hero-deco-right.png") center/contain no-repeat; }
  .page-hero .shell {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .page-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5rem); }
  .page-hero p {
    margin: .5rem 0 0; }

.page-hero--left {
  text-align: left; }

@media (max-width: 767px) {
  .page-hero:before,
  .page-hero:after {
    width: 370px;
    opacity: .4; }
  .page-hero:before {
    width: 440px;
    left: -140px; }
  .page-hero:after {
    height: 250px; } }

/* -----------------------------------------
   Menu Page Sections
----------------------------------------- */
.menu-page {
  padding: 60px 0;
  background: #d9d2c4; }

.menu-static-image {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border: 2px solid var(--white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5); }

.menu-cta {
  padding: 38px 0; }
  .menu-cta .shell {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 35px; }
  .menu-cta img {
    max-height: 90px; }
  .menu-cta p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase; }

@media (max-width: 767px) {
  .menu-cta .shell {
    grid-template-columns: 70px 1fr; }
  .menu-cta .button {
    grid-column: 1 / -1; } }

/* -----------------------------------------
   Gallery Page Section
----------------------------------------- */
.gallery-page {
  padding: 50px 0 80px; }

.concept-notice {
  padding: 12px 16px;
  border-left: 4px solid var(--yellow);
  background: #222;
  color: var(--gray);
  font-size: .85rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px; }
  .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .gallery-grid .gallery-wide {
    grid-column: span 2; }

@media (max-width: 1050px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767px) {
  .gallery-grid {
    grid-auto-rows: 190px; } }

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px; }
    .gallery-grid .gallery-wide {
      grid-column: span 1; } }

/* -----------------------------------------
   Contact Section
----------------------------------------- */
.contact-section {
  padding: 65px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px; }
  .contact-grid aside {
    padding-left: 70px;
    border-left: 1px dashed rgba(255, 255, 255, 0.25); }

.contact-detail {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  margin: 0 0 28px; }
  .contact-detail strong {
    color: var(--yellow);
    text-transform: uppercase; }

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px; }
  .contact-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #555;
    background: var(--white);
    color: #111; }
    .contact-form input:focus, .contact-form textarea:focus {
      outline: 3px solid var(--yellow);
      outline-offset: 1px; }

.form-status {
  padding: 12px;
  border-left: 4px solid var(--yellow);
  background: #222; }

.contact-map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0; }

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px; }
    .contact-grid aside {
      padding: 35px 0 0;
      border-top: 1px dashed rgba(255, 255, 255, 0.25);
      border-left: 0; }
  .contact-detail {
    grid-template-columns: 1fr;
    gap: 5px; } }

/* -----------------------------------------
   Editor Content Section
----------------------------------------- */
.editor-content {
  padding: 60px 0; }
  .editor-content a {
    color: var(--yellow);
    text-decoration: underline; }

/* -----------------------------------------
   Template Name: Menu
   Page-specific styles belong in this file.
----------------------------------------- */
.menu-page {
  background-color: #000; }
  .menu-page .editor-content {
    padding: 10px 0 60px; }
    .menu-page .editor-content p {
      font-size: 20px;
      margin-bottom: 0; }
      @media screen and (max-width: 767px) {
        .menu-page .editor-content p br {
          display: none; } }

.menu-cta {
  position: relative;
  overflow: hidden; }
  .menu-cta .shell {
    grid-template-columns: 1fr auto;
    position: relative;
    z-index: 4; }
    .menu-cta .shell p {
      font-family: "Montserrat", Arial, sans-serif;
      font-size: 33px;
      font-weight: 600;
      line-height: 1.3; }
      @media screen and (max-width: 1100px) {
        .menu-cta .shell p {
          font-size: 26px; }
          .menu-cta .shell p br {
            display: none; } }
      @media screen and (max-width: 640px) {
        .menu-cta .shell p {
          text-align: center; } }
  .menu-cta:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    width: 250px;
    height: 170px;
    background-image: url(../images/decorative-burgundy-skull.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    opacity: .6; }
    @media screen and (max-width: 640px) {
      .menu-cta:before {
        opacity: .3; } }
  .menu-cta:after {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, transparent 5%, rgba(255, 255, 255, 0.9) 25%, #909090 50%, rgba(255, 255, 255, 0.9) 75%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at 3px 3px, #000 0, #000 3px, transparent 3.5px), radial-gradient(circle at 3px 3px, #000 0, #000 3px, transparent 3.5px);
    mask-image: radial-gradient(circle at 3px 3px, #000 0, #000 3px, transparent 3.5px), radial-gradient(circle at 3px 3px, #000 0, #000 3px, transparent 3.5px);
    -webkit-mask-size: 12px 6px;
    mask-size: 12px 6px;
    -webkit-mask-position: top left, bottom left;
    mask-position: top left, bottom left;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x; }
  .menu-cta .button {
    min-width: 200px; }
    .menu-cta .button span {
      position: relative;
      transform: translateY(-3px); }

/* -----------------------------------------
   Template Name: Gallery
   Page-specific styles belong in this file.
----------------------------------------- */
.gallery-page-main .page-hero.section-texture {
  background-size: cover; }

.gallery-page-main .page-hero .shell {
  text-align: center; }
  .gallery-page-main .page-hero .shell p {
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
    font-weight: 600; }

.gallery-page-main .page-hero:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  width: 350px;
  height: 250px;
  background-image: url(../images/decorative-burgundy-skull.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .4;
  z-index: 2; }

.gallery-page-main .page-hero:after {
  display: none; }

/* -----------------------------------------
   Template Name: Contact
   Page-specific styles belong in this file.
----------------------------------------- */
.contact-page .eyebrow {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0; }

.contact-page .contact-section p {
  font-size: 19px;
  margin-bottom: 0; }

.contact-page .contact-section__fontact-form-side {
  display: flex;
  flex-direction: column;
  gap: 32px; }

.contact-page .gform_wrapper.gravity-theme input[type=color], .contact-page .gform_wrapper.gravity-theme input[type=date], .contact-page .gform_wrapper.gravity-theme input[type=datetime-local], .contact-page .gform_wrapper.gravity-theme input[type=datetime], .contact-page .gform_wrapper.gravity-theme input[type=email], .contact-page .gform_wrapper.gravity-theme input[type=month], .contact-page .gform_wrapper.gravity-theme input[type=number], .contact-page .gform_wrapper.gravity-theme input[type=password], .contact-page .gform_wrapper.gravity-theme input[type=search], .contact-page .gform_wrapper.gravity-theme input[type=tel], .contact-page .gform_wrapper.gravity-theme input[type=text], .contact-page .gform_wrapper.gravity-theme input[type=time], .contact-page .gform_wrapper.gravity-theme input[type=url], .contact-page .gform_wrapper.gravity-theme input[type=week], .contact-page .gform_wrapper.gravity-theme select, .contact-page .gform_wrapper.gravity-theme textarea {
  padding: 12px; }

.contact-page .gform_wrapper.gravity-theme .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 20px; }

.contact-page .gform-footer button[type="submit"] {
  background-color: #ffc400;
  display: flex;
  gap: 20px; }
  .contact-page .gform-footer button[type="submit"]:after {
    content: '→';
    display: block;
    font-weight: 900;
    font-family: fantasy;
    font-size: 24px;
    line-height: 24px;
    position: relative;
    transform: translateY(-3px); }

.contact-page aside {
  display: flex;
  flex-direction: column;
  gap: 32px; }
  .contact-page aside .button {
    display: inline-flex;
    width: 290px; }

@media (max-width: 767.99px) {
  .contact-page .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px; }
  .contact-page .contact-section__fontact-form-side {
    order: 2; }
  .contact-page aside {
    order: 1;
    padding: 0;
    border: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto; } }

/* -----------------------------------------
   Template Name: Home Page
   Page-specific styles belong in this file.
----------------------------------------- */
/* ------------------------------------
    Footer Styles
------------------------------------- */
.footer {
  padding-top: 60px; }
  .footer .button {
    font-weight: 700; }
    .footer .button span {
      position: relative;
      transform: translateY(-3px); }
  .footer-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffc400; }
  .footer .menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .footer .menu a:hover, .footer .menu a:focus {
      text-decoration: none;
      color: #ffc400; }
  .footer .shell {
    width: 100%;
    max-width: 80%; }

.social-links img, .social-links svg {
  object-fit: contain;
  width: 40px;
  height: 40px; }

.social-links a {
  transition: transform .3s ease-in-out; }
  .social-links a:hover, .social-links a:focus {
    transform: scale(1.1); }

.footer-link-map, .footer-link-phone {
  position: relative;
  padding-left: 40px; }
  .footer-link-map:hover, .footer-link-map:focus, .footer-link-phone:hover, .footer-link-phone:focus {
    color: var(--yellow);
    text-decoration: none; }

.footer-link-map:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../images/icon-map-mark-new.png) center/contain no-repeat; }

.footer-link-phone:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../images/icon-phone-new.png) center/contain no-repeat; }

.footer-hours {
  position: relative;
  padding-left: 40px; }
  .footer-hours:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: url(../images/icon-clock-new.png) center/contain no-repeat; }

.footer-menu {
  margin: 0;
  list-style: none;
  padding: 0; }
  .footer-menu li {
    display: inline-block; }
    .footer-menu li a {
      display: block;
      padding: 5px 10px; }

/* Styles moved from style.css. */
.site-footer {
  padding: 55px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--black);
  background-image: linear-gradient(rgba(15, 15, 16, 0.84), rgba(15, 15, 16, 0.84)), url("../assets/images/charcoal-texture.jpg");
  background-size: 500px; }
  .site-footer h2 {
    color: var(--yellow);
    font: 700 0.9rem var(--body);
    letter-spacing: .04em; }
  .site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .site-footer li {
    margin-bottom: 8px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr 1.45fr;
  gap: 45px; }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px; }
  .footer-brand .site-logo img {
    max-width: 230px; }

.footer-hours {
  font-size: .78rem;
  line-height: 1.55; }

.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.3); }

.social-links {
  display: flex;
  gap: 16px;
  margin: 14px 0 20px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gray);
  font-size: .76rem;
  text-transform: uppercase; }

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; } }

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr; }
  .footer-map {
    grid-row: auto; }
  .footer-bottom {
    flex-direction: column; } }
