:root {
  --oxblood: #751428;
  --oxblood-deep: #5c101f;
  --parchment: #f1f1d8;
  --mustard: #f1c94b;
  --gold: #f4cf45;
  --teal: #425c59;
  --teal-mid: #5e8f88;
  --teal-dot: #629891;
  --cream: #fffde8;
  --nav-gold: #e8c56a;
  --ink: #2c3a36;
  --wood-tint: #243656;
  --shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  --content: min(90rem, calc(100% - 2.5rem));
  --font-display: "Anton", "Impact", sans-serif;
  --font-slab: "Alfa Slab One", "Rockwell", serif;
  --font-script: "Great Vibes", "Snell Roundhand", cursive;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Libre Franklin", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 20;
  padding: 0.6rem 1rem;
  background: var(--cream);
  color: var(--oxblood);
  font-weight: 800;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

/* Header / hero wood wrap */

.site-header {
  position: relative;
  z-index: 6;
  overflow: visible;
}

.nav-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 17.5rem 1fr auto;
  align-items: center;
  min-height: 5.1rem;
  padding: 0 1.75rem 0 1.2rem;
  background: var(--oxblood);
}

.logo {
  position: absolute;
  left: 1.35rem;
  top: 0.45rem;
  width: 16.2rem;
  z-index: 6;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
}

.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  margin-right: 0.75rem;
  border: 2px solid var(--nav-gold);
  background: transparent;
  color: var(--nav-gold);
  font-family: var(--font-slab);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  grid-column: 2;
  justify-content: center;
  justify-self: center;
}

.nav-frame {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.55rem 1.7rem 0.5rem;
  border: 1.5px solid rgba(255, 253, 232, 0.82);
  position: relative;
}

.nav-frame::before,
.nav-frame::after,
.nav-frame .flourish-l,
.nav-frame .flourish-r {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 253, 232, 0.82);
  border-radius: 0 0 0 70%;
  pointer-events: none;
}

.nav-frame::before {
  top: -7px;
  left: -7px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 80% 0 0 0;
}

.nav-frame::after {
  top: -7px;
  right: -7px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 80% 0 0;
}

.nav-frame .corner-bl,
.nav-frame .corner-br {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 253, 232, 0.82);
  pointer-events: none;
}

.nav-frame .corner-bl {
  left: -7px;
  bottom: -7px;
  border-right: 0;
  border-top: 0;
  border-radius: 0 0 0 80%;
}

.nav-frame .corner-br {
  right: -7px;
  bottom: -7px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 80% 0;
}

.site-nav a {
  font-family: var(--font-slab);
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  white-space: nowrap;
}

.site-nav a.is-current,
.site-nav a:hover {
  color: var(--nav-gold);
}

.nav-diamond {
  color: var(--nav-gold);
  font-size: 0.55rem;
  line-height: 1;
}

.phone {
  grid-column: 3;
  justify-self: end;
  font-family: var(--font-slab);
  font-size: 1.14rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.phone:hover {
  color: var(--nav-gold);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 3.4rem 1rem 4.4rem;
  padding-left: max(2.4rem, calc((100% - 90rem) / 2 + 2.4rem));
  padding-right: max(1rem, calc((100% - 90rem) / 2 + 1rem));
  min-height: 36rem;
  padding-top: 7.2rem;
  background-color: var(--wood-tint);
  background-image: url("../assets/images/wood-navy.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--cream);
}

.hero-copy,
.hero-plate {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 42rem;
}

.hero-headline {
  width: min(40rem, 100%);
  display: block;
  margin: 0 0 0.4rem -0.4rem;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.menu-cta {
  display: inline-block;
  width: min(28rem, 100%);
  margin-left: 1.6rem;
  transition: transform 180ms ease;
}

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

.hero-plate {
  justify-self: end;
  width: min(28.5rem, 100%);
  margin-right: 1rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.scallop {
  height: 18px;
  margin-top: -9px;
  margin-bottom: -9px;
  position: relative;
  z-index: 4;
  pointer-events: none;
  background: url("../assets/images/scallop.png") center / 35px 18px repeat-x;
}

.scallop-cream {
  background-color: transparent;
}

/* Hungry / categories */

.hungry {
  position: relative;
  background: var(--parchment) url("../assets/images/parchment.jpg") center / 420px repeat;
  padding: 4rem 1.25rem 3.6rem;
}

.hungry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/noise.png");
  opacity: 0.07;
  pointer-events: none;
}

.hungry-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
}

.hungry-inner .photo-strip {
  margin-top: 2.4rem;
}

.hungry-frame {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr) 3.6rem;
  align-items: stretch;
  max-width: 68rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.hungry-frame .frame-cap {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--teal-mid);
  stroke-width: 2.25px;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.hungry-frame .frame-cap path {
  vector-effect: non-scaling-stroke;
}

.hungry-copy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 0.35rem;
}

.hungry-copy::before,
.hungry-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2.25px;
  background: linear-gradient(
    90deg,
    var(--teal-mid) 0 18%,
    transparent 18% 82%,
    var(--teal-mid) 82% 100%
  );
}

.hungry-copy::before {
  top: 0;
}

.hungry-copy::after {
  bottom: 0;
}

.hungry-frame h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0.2em;
  color: var(--oxblood);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.4vw, 4.55rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 0.98;
  text-transform: uppercase;
  -webkit-text-stroke: 0.018em currentColor;
  paint-order: stroke fill;
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.35rem;
}

.category {
  text-align: center;
}

.category img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 1.15rem;
  display: block;
  box-shadow: var(--shadow);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0.6rem;
  margin: 2rem 0 0;
}

.photo-strip img,
.story-photos img,
.room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip img {
  aspect-ratio: 4 / 3;
  border-radius: 0.6rem;
}

.story-hero-photo {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  display: block;
}

.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.story-photos img {
  aspect-ratio: 3 / 2;
}

.story-photos img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.room img {
  aspect-ratio: 16 / 10;
  margin: 0 0 0.85rem;
}

.menu-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0 0 1.6rem;
}

.menu-photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.category h3 {
  margin: 0.95rem 0 0.35rem;
  color: var(--oxblood);
  font-family: var(--font-slab);
  font-size: clamp(1.28rem, 2.35vw, 2.15rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.category h3 .at-the {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.55em;
  height: 2.55em;
  margin: 0 0.12em;
  border: 2px solid var(--teal-mid);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.42em;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  vertical-align: 0.28em;
}

.category p {
  margin: 0 auto 0.95rem;
  max-width: 16rem;
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 1.15rem 0.6rem 1.2rem;
  background: var(--oxblood);
  color: var(--mustard);
  font-family: var(--font-slab);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 0 var(--oxblood-deep);
}

.pill::after {
  content: "▸";
  font-size: 0.85rem;
  color: var(--gold);
}

.pill:hover {
  background: var(--oxblood-deep);
}

/* Story */

.story {
  position: relative;
  background-color: var(--oxblood);
  background-image: url("../assets/images/cajun-pattern.svg");
  background-size: 22rem;
  background-repeat: repeat;
  color: var(--parchment);
  text-align: center;
  padding: 4.6rem 1.25rem 4.1rem;
}

.story::before {
  content: none;
}

.story-inner {
  position: relative;
  z-index: 1;
  width: min(70rem, 100%);
  margin: 0 auto;
}

.story h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.6vw, 6.15rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--parchment);
  -webkit-text-stroke: 0.022em currentColor;
  paint-order: stroke fill;
}

.story p {
  margin: 0 auto 2.1rem;
  max-width: 48rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.story-cta {
  position: relative;
  display: flex;
  justify-content: center;
}

.story-cta::before {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  top: 52%;
  border-top: 1px solid rgba(241, 241, 216, 0.38);
}

.story-cta a {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: min(28rem, 92%);
  transition: transform 180ms ease;
}

.story-cta a:hover {
  transform: translateY(-2px);
}

.metal-band {
  height: 7.4rem;
  background: url("../assets/images/metal.jpg") center / cover no-repeat;
  box-shadow: inset 0 10px 16px rgba(0, 0, 0, 0.18), inset 0 -8px 12px rgba(0, 0, 0, 0.12);
}

/* Specials */

.specials {
  position: relative;
  background: var(--mustard) url("../assets/images/yellow-paper.jpg") center / 380px repeat;
  padding: 2.6rem 1.25rem 2rem;
}

.specials-inner {
  width: var(--content);
  margin: 0 auto;
}

.specials-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 0 0 1.5rem;
  color: var(--teal);
}

.specials-heading img {
  width: 2.1rem;
  height: auto;
}

.specials-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.9rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  -webkit-text-stroke: 0.02em currentColor;
  paint-order: stroke fill;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 2px solid var(--teal);
  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    calc(100% - 18px) 18px,
    100% 18px,
    100% 100%,
    0 100%,
    0 18px,
    18px 18px
  );
}

.special-day {
  padding: 1.15rem 0.7rem 1.35rem;
  text-align: center;
  border-right: 1.5px solid var(--teal);
}

.special-day:last-child {
  border-right: 0;
}

.special-day h3 {
  margin: 0 0 0.7rem;
  color: var(--oxblood);
  font-family: var(--font-slab);
  font-size: clamp(0.92rem, 1.4vw, 1.22rem);
  letter-spacing: 0.02em;
}

.special-day p {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Footer */

.site-footer {
  position: relative;
  background: var(--teal) url("../assets/images/teal-paper.jpg") center / 360px repeat;
  color: var(--cream);
  padding: 0 1.25rem 2.6rem;
}

.torn {
  display: block;
  width: calc(100% + 2.5rem);
  max-width: none;
  height: 3.6rem;
  object-fit: cover;
  object-position: center;
  margin: 0 -1.25rem 1.6rem;
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.85rem 1rem;
  align-items: center;
  justify-content: start;
}

.footer-logo {
  width: 17rem;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.social a {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  transition: transform 160ms ease;
}

.social a:hover {
  transform: scale(1.06);
}

.social img {
  width: 100%;
  height: 100%;
  display: block;
}

.address {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 22rem;
}

.address a {
  text-decoration: none;
}

.address a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
}

.footer-nav .nav-frame {
  align-self: end;
  border-color: rgba(255, 253, 232, 0.9);
}

.footer-nav .nav-frame::before,
.footer-nav .nav-frame::after,
.footer-nav .corner-bl,
.footer-nav .corner-br {
  border-color: rgba(255, 253, 232, 0.9);
}

.footer-nav .site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-nav a {
  font-family: var(--font-slab);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
}

.footer-nav a.is-current,
.footer-nav a:hover {
  color: var(--mustard);
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--mustard);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.94rem;
}

.hours li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: baseline;
  margin: 0.35rem 0;
}

.hours .lead {
  border-bottom: 2px dotted var(--mustard);
  min-width: 2rem;
  height: 0.65em;
}

/* Interior pages */

.page-main {
  background: var(--parchment) url("../assets/images/parchment.jpg") center / 420px repeat;
}

.page-banner {
  background: var(--oxblood) url("../assets/images/cajun-pattern.svg") center / 22rem;
  color: var(--parchment);
  text-align: center;
  padding: 5.5rem 1.25rem 2.6rem;
}

.page-banner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.6vw, 4.9rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.022em currentColor;
  paint-order: stroke fill;
}

.page-banner p {
  margin: 0.8rem auto 0;
  max-width: 38rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.page-body {
  width: min(58rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.8rem 0 4.5rem;
}

.menu-block {
  margin: 0 0 2.4rem;
  padding: 1.5rem 1.4rem 1.3rem;
  border: 2px solid var(--teal-mid);
  background: rgba(255, 253, 232, 0.55);
}

.menu-block h2 {
  margin: 0 0 0.35rem;
  color: var(--oxblood);
  font-family: var(--font-slab);
  font-size: 1.45rem;
}

.menu-block .lede {
  margin: 0 0 1rem;
  color: var(--teal);
  font-weight: 700;
}

.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  padding: 0.7rem 0;
  border-top: 1px dashed rgba(66, 92, 89, 0.35);
}

.dish h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
}

.dish .price {
  font-family: var(--font-slab);
  color: var(--oxblood);
}

.dish p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.note {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-article .note + .note {
  margin-top: 1.15rem;
}

.story-article h2 {
  margin: 2rem 0 0.7rem;
  color: var(--oxblood);
  font-family: var(--font-slab);
  font-size: 1.35rem;
}

.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.room {
  padding: 1.3rem 1.2rem;
  background: var(--oxblood);
  color: var(--parchment);
  background-image: url("../assets/images/cajun-pattern.svg");
  background-size: 22rem;
}

.room h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-slab);
}

.interior-specials {
  margin-top: 1.5rem;
}

/* Printed menu boards */

.menu-live {
  --menu-rust: #9a2a1c;
  --menu-rail: #e85c18;
  --menu-rail-deep: #c44e12;
  --menu-cream: #f3f1ea;
  --menu-ink: #1c1c1c;
  --menu-name: #8b2418;
  width: min(72rem, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 2.2rem 0 0;
  display: grid;
  gap: 1.75rem;
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(16rem, 0.34fr) minmax(0, 0.66fr);
  align-items: stretch;
  min-height: 52rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background: var(--menu-cream);
  overflow: hidden;
}

.menu-rail {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--menu-rail);
  color: #fff;
  padding: 1.35rem 1.15rem 1.5rem;
}

.menu-board--mill .menu-rail {
  padding-bottom: 0;
}

.menu-board--mill .menu-sheet {
  padding-bottom: 1.4rem;
}

.menu-brand {
  margin: 0 0 1.1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-align: center;
}

.menu-sheet {
  background: var(--menu-cream) url("../assets/images/parchment.jpg") center / 380px repeat;
  color: var(--menu-ink);
  padding: 1.2rem 1.35rem 1.4rem;
}

.menu-sec {
  margin: 0 0 1.15rem;
}

.menu-sec h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--menu-ink);
}

.menu-rail .menu-sec h2 {
  color: #111;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.menu-note {
  margin: 0 0 0.7rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

.menu-rail .menu-note {
  color: #111;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.1rem;
}

.menu-item {
  margin: 0 0 0.62rem;
}

.menu-item h3 {
  margin: 0;
  color: var(--menu-name);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.menu-rail .menu-item h3 {
  color: #6e1a10;
}

.menu-item p {
  margin: 0.12rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.28;
  color: #222;
}

.menu-rail .menu-item p {
  color: #f7f7f7;
  font-style: normal;
  font-weight: 600;
}

.menu-add {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
}

.menu-item.is-feature {
  padding: 0.45rem 0.5rem 0.5rem;
  border: 1.5px solid currentColor;
}

.menu-item.is-feature-dark {
  background: var(--menu-rail-deep);
  border-color: #fff;
}

.menu-item.is-feature-dark h3,
.menu-item.is-feature-dark p,
.menu-item.is-feature-dark .menu-add {
  color: #fff;
}

.menu-item.is-feature-dash {
  border-style: dashed;
  border-color: #5a6e5c;
  background: rgba(214, 226, 214, 0.45);
}

.menu-item.is-feature-light {
  border-color: #8a8a8a;
  background: rgba(255, 255, 255, 0.55);
}

.menu-sub {
  margin: 0.55rem 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.12rem 0;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.7rem;
}

.menu-contact {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.menu-contact a {
  color: inherit;
  text-decoration: none;
}

.menu-checks {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-checks li {
  margin: 0.2rem 0;
}

.menu-checks li::before {
  content: "✓ ";
}

.menu-gratuity {
  margin: 0.75rem 0 0;
  padding: 0.45rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.menu-mill {
  display: block;
  width: calc(100% + 2.3rem);
  max-width: none;
  height: auto;
  margin-top: auto;
  margin-right: -1.15rem;
  margin-bottom: 0;
  margin-left: -1.15rem;
  flex-shrink: 0;
}

.menu-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.58rem;
  font-style: italic;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .menu-board,
  .menu-grid,
  .kids-grid {
    grid-template-columns: 1fr;
  }

  .menu-mill {
    width: calc(100% + 2.3rem);
  }

  .menu-board--mill .menu-rail,
  .menu-board--mill .menu-sheet {
    padding-bottom: 0;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .nav-bar {
    grid-template-columns: 14rem 1fr auto;
  }

  .logo {
    width: 13.5rem;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .special-day:nth-child(3) {
    border-right: 0;
  }

  .special-day:nth-child(n + 4) {
    border-top: 1.5px solid var(--teal);
  }
}

@media (max-width: 800px) {
  .nav-bar {
    grid-template-columns: 1fr auto;
    min-height: 4.2rem;
  }

  .logo {
    width: 11.5rem;
    top: 0.4rem;
    left: 0.7rem;
  }

  .phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    grid-column: 1 / -1;
    background: var(--oxblood);
    padding: 1rem 1rem 1.2rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-frame {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.65rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 6.5rem 1rem 2.5rem;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
    max-width: none;
  }

  .menu-cta {
    margin-left: 0;
  }

  .hero-plate {
    justify-self: center;
    margin: 0.5rem 0 0;
    width: min(22rem, 92%);
  }

  .hungry-frame {
    grid-template-columns: 2.35rem minmax(0, 1fr) 2.35rem;
  }

  .hungry {
    padding-top: 2.4rem;
  }

  .categories {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin: 0 auto;
  }

  .photo-strip,
  .menu-photos {
    grid-template-columns: 1fr 1fr;
  }

  .story-photos,
  .footer-inner,
  .rooms {
    grid-template-columns: 1fr;
  }

  .story-photos img:first-child {
    grid-column: auto;
    aspect-ratio: 3 / 2;
  }

  .footer-nav .nav-frame,
  .footer-brand {
    justify-content: center;
    align-self: center;
  }

  .specials-grid {
    grid-template-columns: 1fr 1fr;
    clip-path: none;
  }

  .special-day {
    border-right: 1.5px solid var(--teal);
    border-top: 1.5px solid var(--teal);
  }

  .special-day:nth-child(2n) {
    border-right: 0;
  }
}

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

  .menu-cta,
  .story-cta a,
  .social a,
  .pill {
    transition: none;
  }
}
