:root {
  --chop-dark: #2e363f;
  --chop-darker: #1b1f23;
  --chop-black: #111;
  --chop-bg: #2d2d2d;
  --chop-panel: #444;
  --chop-gold: #eaa824;
  --chop-gold-dark: #db9b15;
  --chop-gold-light: #eebb51;
  --chop-text: #fff;
  --chop-muted: #b9b9b9;
  --header-height: 92px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--chop-text);
  background: var(--chop-bg);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  padding-top: var(--header-height);
}

a {
  color: var(--chop-gold);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover,
a:focus {
  color: var(--chop-gold-dark);
}

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 2000;
  padding: .5rem .75rem;
  background: #fff;
  color: #000;
}

.site-header {
  min-height: var(--header-height);
  background: rgba(17, 17, 17, .98);
  border-bottom: 1px solid #111;
  box-shadow: 0 0 8px rgba(0, 0, 0, .65);
  transition: min-height .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-header .navbar {
  min-height: var(--header-height);
  padding-block: .7rem;
  transition: min-height .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-scrolled .navbar {
  min-height: 68px;
}

.site-header.is-scrolled .navbar {
  padding-block: .3rem;
}

.navbar-brand img {
  display: block;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
  transition: height .25s ease;
}

.site-header.is-scrolled .navbar-brand img {
  height: 46px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #d3d3d3;
  font-weight: 400;
  font-size: .95rem;
  padding-inline: .7rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.dropdown-menu-dark {
  --bs-dropdown-bg: var(--chop-dark);
  --bs-dropdown-link-color: #d0d0d0;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-hover-bg: var(--chop-darker);
  --bs-dropdown-border-color: rgba(255, 255, 255, .08);
  min-width: 15rem;
  border-radius: .35rem;
  box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .35);
}

.dropdown-divider {
  border-color: rgba(255, 255, 255, .12);
}

.hero-section {
  background: #111;
}

.hero-section .carousel-item {
  position: relative;
}

.hero-image {
  height: clamp(390px, 55vw, 620px);
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18) 65%, rgba(0, 0, 0, .1));
}

.hero-caption {
  right: auto;
  bottom: 16%;
  left: max(7%, calc((100vw - 1140px) / 2));
  width: min(760px, 82%);
  text-align: left;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .45rem .8rem;
  color: #fff;
  background: var(--chop-gold);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-caption h1,
.hero-caption h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border: 0;
}

.btn-chop {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--chop-gold);
  --bs-btn-border-color: var(--chop-gold);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--chop-gold-dark);
  --bs-btn-hover-border-color: var(--chop-gold-dark);
  --bs-btn-focus-shadow-rgb: 234, 168, 36;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--chop-gold-dark);
  --bs-btn-active-border-color: var(--chop-gold-dark);
  padding-inline: 1.5rem;
  border-radius: .25rem;
  font-weight: 600;
}

.section-pad {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.content-narrow {
  max-width: 980px;
}

.display-heading {
  margin-bottom: .35rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -.03em;
}

.display-heading strong {
  font-weight: 700;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--chop-muted);
  font-size: .95rem;
  letter-spacing: .08em;
}

.section-divider {
  position: relative;
  height: 2px;
  margin: 0;
  background: #666;
  text-align: center;
}

.section-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--chop-gold);
  background: var(--chop-bg);
  font-size: 1.2rem;
}

.hours-section {
  padding: 4rem 0;
  background: var(--chop-panel);
}

.hours-logo {
  height: auto;
}

.hours-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hours-list {
  margin-top: 1.75rem;
  color: #fff;
}

.hours-list p {
  margin: .25rem 0;
}

.feature-carousel {
  background: #111;
  box-shadow: 0 .8rem 2.2rem rgba(0, 0, 0, .28);
}

.feature-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-carousel .carousel-control-prev,
.feature-carousel .carousel-control-next {
  width: 12%;
}

.feature-carousel .carousel-control-prev-icon,
.feature-carousel .carousel-control-next-icon {
  width: 2.4rem;
  height: 2.4rem;
  padding: .5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .55);
  background-size: 52%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

@media (min-width: 1200px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown > .dropdown-toggle:active {
    pointer-events: none;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --header-height: 80px;
  }

  .site-header,
  .site-header .navbar {
    min-height: var(--header-height);
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-collapse {
    margin-top: .75rem;
    padding: .75rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: .65rem .25rem;
  }

  .dropdown-menu-dark {
    margin-left: .5rem;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 74px;
  }

  .navbar-brand img {
    height: 44px;
  }

  .hero-image {
    height: 460px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, .48);
  }

  .hero-caption {
    right: 8%;
    bottom: 13%;
    left: 8%;
    width: auto;
    text-align: center;
  }

  .hero-kicker {
    font-size: 1rem;
  }

  .hero-caption h1,
  .hero-caption h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 14%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Footer */
.site-footer {
  color: #fff;
  background: #222;
}

.footer-bar {
  background: #111;
  border-top: 1px solid #222;
  padding: 1.35rem 0;
}

.footer-bar .copyright {
  display: block;
  color: #fff;
  font-size: .82rem;
  line-height: 1.65;
  text-transform: uppercase;
}

.footer-bar .copyright a {
  color: var(--chop-gold);
}

.footer-bar .to-top {
  display: inline-block;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-bar .copyright a:hover,
.footer-bar .copyright a:focus,
.footer-bar .to-top:hover,
.footer-bar .to-top:focus {
  color: var(--chop-gold-dark);
}

.to-top-icon {
  display: inline-grid;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: .35rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .75rem;
  line-height: 1;
}

.footer-locations-heading {
  padding: 3rem 0 2.75rem;
  background: #444;
}

.footer-locations-logo {
  display: block;
  margin: 0 auto .4rem;
}

.footer-locations-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .025em;
}

.footer-content {
  padding: 0;
  background: #222;
}

.footer-content .row {
  min-height: 300px;
}

.footer-content .col-md-4 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.footer-location {
  color: #fff;
  font-style: normal;
  font-size: .9rem;
  line-height: 1.55;
}

.footer-location a {
  color: #fff;
}

.footer-location a:hover,
.footer-location a:focus {
  color: var(--chop-gold);
}

.footer-contact-row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-contact-icon {
  flex: 0 0 auto;
  width: 1.25rem;
  color: #aaa;
  text-align: center;
  font-size: .95rem;
  line-height: 1.5;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
}

.footer-social-row a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.footer-social-row img {
  display: block;
  width: 32px;
  height: 32px;
}

.footer-contact-link {
  margin-right: .15rem;
}

.footer-center-logo {
  min-height: 300px;
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
  background: #111;
  border-radius: 0 0 1rem 1rem;
}

.footer-center-logo img {
  max-width: 70%;
  height: auto;
}

.footer-location-right {
  margin-left: auto;
  max-width: 290px;
}

@media (max-width: 767.98px) {
  .footer-bar {
    padding: 1.5rem 0;
  }

  .footer-locations-heading {
    padding: 2.5rem 0 2rem;
  }

  .footer-content .row {
    min-height: 0;
  }

  .footer-content .col-md-4 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .footer-center-logo {
    min-height: 210px;
    margin: 0;
    border-radius: .75rem;
  }

  .footer-location,
  .footer-location-right {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }
}


/* Reservations */
.page-hero {
  padding: 9rem 0 3.5rem;
  background:
    linear-gradient(rgba(17, 17, 17, .78), rgba(17, 17, 17, .88)),
    url("../../images/newfront2019.jpg") center / cover no-repeat;
  color: #fff;
}

.page-hero h1 {
  margin-bottom: .75rem;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 300;
}

.page-kicker {
  color: var(--chop-gold);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reservation-mark {
  width: 125px;
  height: 125px;
  object-fit: contain;
}

.reservation-section {
  padding: 4.5rem 0;
  background: #1b1f23;
}

.reservation-card,
.reservation-info {
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #252a30;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .75rem;
}

.reservation-card h2,
.reservation-info h2 {
  color: #fff;
}

.reservation-card .form-label {
  color: #f5f5f5;
  font-weight: 600;
}

.reservation-card .form-control,
.reservation-card .form-select {
  min-height: 48px;
  color: #fff;
  background-color: #181c20;
  border-color: #49515a;
}

.reservation-card textarea.form-control {
  min-height: 150px;
}

.reservation-card .form-control:focus,
.reservation-card .form-select:focus {
  border-color: var(--chop-gold);
  box-shadow: 0 0 0 .2rem rgba(234, 168, 36, .18);
}

.reservation-card .form-control::placeholder {
  color: #8e969e;
}

.reservation-card .form-select {
  color-scheme: dark;
}

.reservation-notice {
  padding: 1rem 1.15rem;
  color: #f3f3f3;
  background: rgba(234, 168, 36, .10);
  border-left: 4px solid var(--chop-gold);
  border-radius: .25rem;
}

.reservation-result {
  min-height: 1.5rem;
  padding: .85rem 1rem;
  border-radius: .35rem;
}

.reservation-result:empty {
  display: none;
}

.reservation-result.is-success {
  color: #d9f7df;
  background: rgba(25, 135, 84, .18);
  border: 1px solid rgba(25, 135, 84, .45);
}

.reservation-result.is-error {
  color: #ffe0e3;
  background: rgba(220, 53, 69, .16);
  border: 1px solid rgba(220, 53, 69, .42);
}

.reservation-info {
  color: #d9dde1;
}

.reservation-info a {
  color: var(--chop-gold);
}

.reservation-info-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.reservation-info-block:last-child {
  border-bottom: 0;
}

.reservation-info-block h3 {
  margin-bottom: .55rem;
  color: var(--chop-gold);
  letter-spacing: .08em;
}

.reservation-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 991.98px) {
  .page-hero {
    padding-top: 7.75rem;
    text-align: center;
  }

  .reservation-mark {
    width: 100px;
    height: 100px;
  }

  .reservation-section {
    padding: 3rem 0;
  }
}


.reservation-date-button {
  min-width: 52px;
  border-color: #49515a;
  color: var(--chop-gold);
  background: #181c20;
}

.reservation-date-button:hover,
.reservation-date-button:focus {
  color: #111;
  background: var(--chop-gold);
  border-color: var(--chop-gold);
}


.business-hours {
  display: grid;
  gap: .6rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hours-days {
  font-weight: 600;
}

.hours-time {
  white-space: nowrap;
}

.hours-note {
  margin-top: .5rem;
  color: var(--chop-gold);
  font-weight: 600;
}

.hours-closed {
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .hours-row {
    display: block;
  }

  .hours-days,
  .hours-time {
    display: block;
  }

  .hours-time {
    margin-top: .15rem;
    white-space: normal;
  }
}

/* About Page */
.about-hero {
  background:
    linear-gradient(rgba(17, 17, 17, .76), rgba(17, 17, 17, .88)),
    url("../../images/newfront2019.jpg") center / cover no-repeat;
}

.about-mark {
  width: 125px;
  height: 125px;
  object-fit: contain;
}

.about-section,
.about-story-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.about-section {
  background: var(--chop-bg);
}

.about-story-section {
  background: var(--chop-darker);
}

.about-photo-card {
  overflow: hidden;
  border-radius: .75rem;
  background: #111;
  box-shadow: 0 .9rem 2.2rem rgba(0, 0, 0, .28);
}

.about-photo-card img {
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-highlight-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .75rem;
  background: #252a30;
}

.about-highlight-card h2 {
  margin-bottom: 1.5rem;
}

.about-location {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.about-location:last-child {
  border-bottom: 0;
}

.about-location h3 {
  margin: 0 0 .2rem;
  color: var(--chop-gold);
  font-size: 1.1rem;
}

.about-location p {
  color: #d9dde1;
}

.about-callout {
  padding: 4rem 0;
  background: #444;
}

.about-callout p {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  color: #e5e5e5;
}

@media (max-width: 991.98px) {
  .about-mark {
    width: 100px;
    height: 100px;
  }
}

/* Private Dining */
.private-dining-slider-section {
  background: #111;
}

.private-dining-slider-section .carousel-item {
  position: relative;
}

.private-dining-slide-image {
  height: clamp(430px, 58vw, 680px);
  object-fit: cover;
  object-position: center;
}

.private-dining-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .20) 68%, rgba(0, 0, 0, .10));
}

.private-dining-caption {
  right: auto;
  bottom: 16%;
  left: max(7%, calc((100vw - 1140px) / 2));
  width: min(760px, 82%);
  text-align: left;
}

.private-dining-kicker {
  display: inline-block;
  margin-bottom: .65rem;
  padding: .45rem .8rem;
  color: #fff;
  background: var(--chop-gold);
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.private-dining-caption h1,
.private-dining-caption h2 {
  margin-bottom: .65rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.private-dining-caption p {
  max-width: 640px;
  margin-bottom: 0;
  color: #f0f0f0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.private-dining-intro,
.private-dining-feature {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.private-dining-intro {
  background: var(--chop-bg);
}

.private-dining-lead {
  max-width: 900px;
  margin: 0 auto;
  color: #e2e2e2;
  font-size: 1.05rem;
}

.private-dining-feature {
  background: var(--chop-darker);
}

.private-dining-photo {
  overflow: hidden;
  border: 4px solid var(--chop-gold-dark);
  border-radius: .75rem;
  background: #111;
  box-shadow: 0 .9rem 2.2rem rgba(0, 0, 0, .28);
}

.private-dining-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.private-dining-feature h2 {
  margin-bottom: 1.25rem;
}

.private-dining-callout {
  padding: 4rem 0;
  background: #444;
}

.private-dining-callout p {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  color: #e5e5e5;
}

@media (max-width: 767.98px) {
  .private-dining-slide-image {
    height: 500px;
  }

  .private-dining-slide-overlay {
    background: rgba(0, 0, 0, .52);
  }

  .private-dining-caption {
    right: 8%;
    bottom: 12%;
    left: 8%;
    width: auto;
    text-align: center;
  }

  .private-dining-caption p {
    margin-right: auto;
    margin-left: auto;
  }
}
