:root {
  --ink: #1c1414;
  --ink-soft: #2d2020;
  --red: #c4361e;
  --red-dark: #9b2918;
  --paper: #f3f1eb;
  --paper-deep: #e7e2d8;
  --line: rgba(28, 20, 20, 0.18);
  --muted: #5c5c5c;
  --gold: #f1e7d0;
  --white: #fff;
  --display: "Palanquin Dark", Georgia, serif;
  --body: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 18px 45px rgba(28, 20, 20, 0.14);
  --max-width: 1170px;
  --reading-width: 740px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.narrow-content {
  width: min(calc(100% - 2rem), 760px);
  margin-inline: auto;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(28, 20, 20, 1);
  color: var(--white);
  border-bottom: 1px solid rgba(241, 231, 208, 0.16);
  box-shadow: 0 4px 18px rgba(28, 20, 20, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(152px, 18vw, 218px);
  height: auto;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 2vw, 2rem);
}

.desktop-nav a,
.mobile-nav a {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-icon {
  display: grid;
  gap: 5px;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  width: min(80vw, 280px);
  padding: 0.7rem;
  background: var(--ink);
  border: 1px solid rgba(241, 231, 208, 0.2);
  box-shadow: var(--shadow);
}

.mobile-nav li + li {
  border-top: 1px solid rgba(241, 231, 208, 0.13);
}

.mobile-nav a {
  display: block;
  padding: 0.8rem 0.7rem;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(6rem, 14vw, 10rem) 1rem clamp(5rem, 10vw, 7rem);
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background-color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: -2.5%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(28, 20, 20, 0.58), rgba(28, 20, 20, 0)), url("assets/img/8a3fd1b08eeceb843ff06f2c242a48ed.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02) translate3d(0, 0, 0);
  transform-origin: center;
  animation: hero-sizzle 18s ease-in-out infinite;
  will-change: transform, filter;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(28, 20, 20, 0.1));
}

@keyframes hero-sizzle {
  0%,
  100% {
    filter: saturate(1) brightness(1);
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  50% {
    filter: saturate(1.05) brightness(1.02);
    transform: scale(1.045) translate3d(-0.35%, 0.2%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
}

.eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--red {
  color: var(--red);
}

.eyebrow--light {
  color: var(--gold);
}

.eyebrow--gold {
  color: var(--gold);
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--gold);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.26);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin: 1.8rem auto 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.hero-hours p {
  white-space: nowrap;
}

.hero-hours strong {
  color: var(--gold);
}

.hours-divider {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: var(--white);
  color: var(--red);
}

.button--light:hover {
  background: var(--gold);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.button--outline-light:hover {
  background: var(--white);
  color: var(--red);
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.button--gold:hover {
  background: var(--white);
}

.hero-scroll {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  font-size: 1.2rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: 78px;
}

.section--paper {
  background-color: var(--paper);
  background-image: url("assets/img/49e7f1eab243f3a8ad4a8fb3919d1b3b.jpg");
  background-position: center;
  background-size: cover;
}

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

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.section-intro {
  max-width: 650px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-intro--centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.section-heading h2 {
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-intro p:last-child,
.section-heading > p:last-child {
  color: var(--muted);
}

.menu-mark {
  width: 75px;
  height: auto;
  margin: 0 auto 1.7rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.4rem) clamp(2.2rem, 7vw, 7rem);
  max-width: 1080px;
  margin-inline: auto;
}

.menu-group {
  padding-top: 1rem;
  border-top: 2px solid var(--red);
}

.menu-group h3 {
  color: var(--red);
  text-transform: uppercase;
}

.menu-note {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
}

.menu-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.menu-list li {
  display: grid;
  gap: 0.08rem;
  padding: 0.65rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list li > span,
.menu-list li strong + span {
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 400;
  line-height: 1.45;
}

.menu-list li > span:not(:only-child) {
  display: inline;
}

.menu-list li > span:first-child:only-child {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.menu-list--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

.menu-list--compact li {
  font-size: 0.94rem;
}

.menu-list--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.menu-group--full {
  grid-column: 1 / -1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.split-copy h2 {
  margin-bottom: 1.35rem;
  color: var(--gold);
  text-transform: uppercase;
}

.section--red .lead {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
}

.split-copy p + p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.91);
}

.image-frame {
  position: relative;
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  inset: -0.8rem 0.8rem 0.8rem -0.8rem;
  content: "";
  border: 1px solid rgba(241, 231, 208, 0.5);
  pointer-events: none;
}

.image-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 860 / 450;
  object-fit: cover;
}

.section-heading {
  max-width: 660px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.map-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  aspect-ratio: 860 / 629;
  object-fit: cover;
  transition: transform 250ms ease;
}

.map-card:hover img {
  transform: scale(1.025);
}

.map-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: rgba(28, 20, 20, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
}

.location-details {
  display: grid;
  gap: 1.9rem;
}

.detail-block {
  padding-top: 1rem;
  border-top: 2px solid var(--red);
}

.detail-block h3 {
  margin-bottom: 0.7rem;
  color: var(--red);
  text-transform: uppercase;
}

.detail-block p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hours-list {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted var(--line);
}

.hours-list dt,
.hours-list dd {
  padding: 0.14rem 0;
}

.hours-list dd {
  font-weight: 700;
  text-align: right;
}

.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.phone-link {
  display: inline-block;
  font-size: 1.1rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.reviews-intro h2 {
  margin-bottom: 1.35rem;
  color: var(--gold);
  text-transform: uppercase;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button-icon {
  font-size: 1.1em;
}

.testimonials {
  display: grid;
  gap: 1rem;
}

blockquote {
  padding: 1.3rem 1.5rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(28, 20, 20, 0.12);
}

blockquote p {
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.55;
}

blockquote cite {
  display: block;
  margin-top: 0.55rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.catering-section {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.catering-section h2 {
  margin-bottom: 1.25rem;
  color: var(--gold);
  text-transform: uppercase;
}

.catering-section p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 1.7rem;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink-soft);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding: 1.2rem 0;
}

.site-footer a {
  color: var(--gold);
  text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .split-layout,
  .location-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .split-copy {
    max-width: 680px;
  }

  .image-frame {
    width: min(100%, 760px);
  }

  .location-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-details .detail-block:last-child {
    grid-column: 1 / -1;
  }

  .reviews-intro {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 170px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-hours p {
    display: grid;
    gap: 0.2rem;
    white-space: normal;
  }

  .hero-hour {
    display: block;
  }

  .hours-divider {
    display: none;
  }

  .hero-scroll {
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .menu-group--sandwiches {
    order: 1;
  }

  .menu-group--plates {
    order: 2;
  }

  .menu-group--specialty {
    order: 3;
  }

  .menu-group--sides {
    order: 4;
  }

  .menu-group--ribs {
    order: 5;
  }

  .menu-group--family {
    order: 6;
  }

  .menu-group--kids {
    order: 7;
  }

  .menu-group--full {
    grid-column: auto;
  }

  .menu-list--three {
    grid-template-columns: 1fr;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-details .detail-block:last-child {
    grid-column: auto;
  }

  .review-actions {
    display: grid;
  }

  .review-actions .button {
    width: 100%;
  }

}

@media (max-width: 1024px) {
  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-inner p {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero::before {
    animation: none;
  }
}
