:root {
  --bg: #faf7f2;
  --panel: #ffffff;
  --panel-alt: #f5f1eb;
  --text: #161616;
  --muted: #6b6b6b;
  --line: #e7dfd4;
  --red: #c81e1e;
  --dark: #161616;
  --shadow: 0 16px 40px rgba(0,0,0,.08);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #f4efe8;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250,247,242,.9);
  border-bottom: 1px solid rgba(22,22,22,.08);
}
.nav-wrap, .footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #1b1b1b;
  border-radius: 999px;
  display: block;
}
.nav-wrap { min-height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 72px; height: 72px; border-radius: 18px; object-fit: cover; flex: 0 0 auto; }
.brand strong, .site-footer strong { display: block; font-size: 1.05rem; }
.brand > div { display: flex; flex-direction: column; gap: 4px; }
.eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.eyebrow.red { color: var(--red); }
.eyebrow.red-light { color: #ffb7b7; }
.nav-links, .nav-cta, .hero-actions, .location-hours, .facilities, .delivery-logos { display: flex; gap: 12px; align-items: center; }

.nav-links {
  gap: 28px;
}

.nav-links a {
  font-size: .95rem;
  color: #4a4a4a;
  padding: 6px 0;
}
.btn {
  border-radius: 999px; padding: 13px 20px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-light { background: #fff; color: var(--dark); }
.btn-outline { border-color: #cfc6ba; background: #fff; }

.order-menu {
  position: relative;
}

.nav-order-menu::after,
.hero-order-menu::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 14px;
  content: "";
}

.hero-order-menu::after {
  right: auto;
  left: 0;
  width: min(760px, calc(100vw - 64px));
}

.hero-order-menu .order-menu-panel {
  right: auto;
  left: 0;
}

.hero-order-menu.is-open {
  z-index: 6;
}

.hero-order-menu .order-menu-panel {
  top: calc(100% + 14px);
  width: min(760px, calc(100vw - 64px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sticky-delivery-menu .order-menu-panel {
  top: auto;
  right: 0;
  bottom: calc(100% + 12px);
}

.order-menu-toggle {
  cursor: pointer;
  font: inherit;
}

.order-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 286px;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}

.order-menu:hover .order-menu-panel,
.order-menu:focus-within .order-menu-panel,
.order-menu.is-open .order-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.order-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  color: #1b1b1b;
  transition: background 0.18s ease, transform 0.18s ease;
}

.order-option:hover {
  background: #f5efe7;
  transform: translateX(2px);
}

.order-option strong,
.order-option small {
  display: block;
}

.order-option strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.order-option small {
  margin-top: 3px;
  color: #6a625c;
  font-size: 0.78rem;
  line-height: 1.2;
}

.order-option-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.order-option-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.pickup-icon {
  background: #161616;
}

.doordash-icon {
  background: #eb1700;
}

.ubereats-icon {
  background: #06c167;
  color: #06130d;
  font-size: 0.72rem;
}

.mobile-order-menu {
  display: none;
}
.hero { padding: 56px 0 40px; }
.hero-copy {
  min-width: 0;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: clamp(3rem, 7vw, 5.25rem); line-height: .95; margin: 14px 0 16px; }
.hero-copy p { font-size: 1.08rem; line-height: 1.8; color: var(--muted); max-width: 640px; }
.pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .82rem; font-weight: 700; }
.info-card, .food-card, .menu-gallery-item, .menu-section, .contact-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.location-hours { margin-top: 24px; flex-wrap: wrap; }
.info-card { padding: 18px 20px; min-width: 250px; color: var(--muted); line-height: 1.7; }
.info-label { color: var(--text); font-weight: 800; margin-bottom: 6px; }
.facilities { margin-top: 18px; flex-wrap: wrap; }
.facility { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; font-weight: 700; }
.card-glow img, .food-card img, .menu-gallery-item img { border-radius: calc(var(--radius) - 8px); }
.hero-media { padding: 10px; background: var(--panel); border: 1px solid rgba(255,255,255,.7); border-radius: calc(var(--radius) + 4px); box-shadow: 0 22px 60px rgba(0,0,0,.12); }
.hero-media img { width: 100%; height: 560px; object-fit: cover; }
.section { padding: 68px 0; }
.alt-bg { background: linear-gradient(180deg, rgba(22,22,22,.02), rgba(22,22,22,.04)); }
.section-head { margin-bottom: 26px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h1,
.section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 10px 0 12px; line-height: 1.02; }
.section-head p { color: var(--muted); line-height: 1.8; max-width: 720px; }
.photo-grid, .cards-grid, .mini-cards { display: grid; gap: 20px; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.food-card { overflow: hidden; }
.food-card img { width: 100%; height: 250px; object-fit: cover; }
.food-card-body { padding: 18px; }
.food-card-body h3 { margin: 0 0 8px; }
.food-card-body p { margin: 0; color: var(--muted); line-height: 1.7; }
.about-grid, .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.dark-card { background: #171717; color: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.dark-card p { color: rgba(255,255,255,.78); line-height: 1.8; }
.prose { padding: 28px; }
.prose p { color: var(--muted); line-height: 1.9; margin: 0 0 18px; }
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin: 18px 0 34px;
}
.menu-gallery-item {
  overflow: hidden;
  background: #f7f2eb;
  border: 1px solid rgba(27, 27, 27, 0.05);
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.menu-gallery-item:hover {
  transform: translateY(-2px);
  background: #fbf8f3;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.menu-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.menu-gallery-item span {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #1b1b1b;
}
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.tab-btn { border: 0; border-radius: 999px; background: #ece7df; padding: 11px 16px; cursor: pointer; font-weight: 700; }
.tab-btn.active { background: #171717; color: #fff; }
.menu-section { padding: 24px; }
.menu-section h3 { margin: 0 0 10px; font-size: 1.5rem; }
.menu-note { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.menu-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.menu-list li { padding-bottom: 10px; border-bottom: 1px dashed var(--line); color: #4c4c4c; line-height: 1.6; }
.cta-banner { background: #171717; color: #fff; border-radius: var(--radius); padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.cta-banner p { color: rgba(255,255,255,.78); }
.contact-grid { grid-template-columns: 1.05fr .95fr; }
#contact { background: transparent; }
#contact .container.contact-grid { align-items: start; }
#contact .content-card { background: transparent; border: 0; border-radius: 0; box-shadow: none; padding: 0; }
#contact .section-head.compact { margin-bottom: 22px; }
#contact .fake-form { background: transparent; }
.fake-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fake-form input, .fake-form textarea { width: 100%; padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); background: var(--panel-alt); font: inherit; }
.fake-form textarea { min-height: 150px; resize: vertical; }
.span-2 { grid-column: 1 / -1; }
.stack { display: grid; gap: 22px; }
.mini-cards { grid-template-columns: repeat(3, 1fr); }
.contact-card { padding: 20px; }
.contact-card h3 { margin-top: 0; margin-bottom: 8px; }
.contact-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.join-card h2 { margin: 10px 0 10px; }
.apply-inline {
  margin: 0 0 18px;
  line-height: 1.8;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 9px 15px;
  font-size: 0.95rem;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width: 920px) {
  .apply-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .apply-btn {
    margin-left: 0;
  }
}
#contact .join-card { box-shadow: var(--shadow); }
.hours-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 18px; display: grid; gap: 8px; }
.site-footer { border-top: 1px solid rgba(255,255,255,.1); padding: 32px 0 36px; background: #181410; color: #faf7f2; }
.site-footer p { margin: 6px 0 0; color: #c9c1b8; }
.site-footer .btn { background: #c81e1e; border-color: #c81e1e; color: #fff; }
.site-footer .btn:hover { background: #a91818; border-color: #a91818; }
.site-footer a:focus-visible { outline: 2px solid #faf7f2; outline-offset: 5px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #faf7f2;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* reviews */
#reviews .section-head h2 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); line-height: 1.15; max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; white-space: normal; }
#reviews-grid { align-items: stretch; gap: 1.75rem; }
.review-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; padding: 2rem; background: #ffffff; border: 1px solid #d9d1c6; border-radius: 28px; box-shadow: 0 18px 40px rgba(20, 17, 14, 0.06); text-align: left; }
.review-card p { margin: 0; color: #4f4a45; line-height: 1.7; text-align: left; }
.review-card strong { display: block; margin-top: 1.5rem; color: #111111; font-size: 1.35rem; font-weight: 800; text-align: left; }

.delivery-logos img { height: 40px; width: auto; border-radius: 8px; }
@media (max-width: 1080px) {
  .hero-grid, .about-grid, .contact-grid, .four-up, .two-col, .mini-cards { grid-template-columns: 1fr 1fr; }
  .menu-gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 780px) {
  .home-page {
    padding-bottom: 82px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrap {
    min-height: 76px;
    position: relative;
    flex-direction: row;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(250,247,242,0.98);
    border: 1px solid rgba(27, 27, 27, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
    padding: 14px;
    flex-direction: column;
    gap: 6px;
    z-index: 30;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.7);
  }

  .hero-grid, .about-grid, .contact-grid, .four-up, .three-col, .two-col, .mini-cards {
    grid-template-columns: 1fr;
  }

  .menu-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-choice-grid {
    grid-template-columns: 1fr;
  }

  .order-choice-card {
    min-height: auto;
    align-items: flex-start;
    padding: 20px;
  }

  .order-choice-card .order-option-icon {
    width: 44px;
    height: 44px;
  }

  .order-choice-card strong {
    font-size: 1rem;
  }

  .order-choice-card span:not(.order-option-icon) {
    font-size: 0.92rem;
  }

  .mobile-sticky-order {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(18, 14, 11, 0.78);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .mobile-sticky-order.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  .mobile-sticky-order > a,
  .mobile-sticky-order .order-menu-toggle {
    display: inline-flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: linear-gradient(180deg, #d82121, #bd1717);
    color: #fff;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 850;
    letter-spacing: -0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .mobile-sticky-order .order-menu-panel {
    width: min(340px, calc(100vw - 24px));
  }

  .hero {
    padding: 32px 0 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .location-hours,
  .facilities {
    width: 100%;
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .info-card {
    min-width: 0;
    width: 100%;
  }

  .facility {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }

  .hero-media img {
    height: 300px;
  }

  .section {
    padding: 52px 0;
  }

  .content-card,
  .prose,
  .dark-card,
  .menu-section,
  .catering-section-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fake-form {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  #menu-content .menu-card-grid,
  .menu-card-grid {
    grid-template-columns: 1fr !important;
  }

  .review-card {
    padding: 1.5rem;
  }
}
#contact { background: transparent; }
#contact .container.contact-grid { align-items: start; }

/* clean menu board */
.menu-board-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.menu-board-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(23, 18, 14, 0.06);
}

.menu-board-nav span,
.menu-board-kicker,
.menu-category-head > span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-board-nav span {
  margin-bottom: 8px;
}

.menu-board-nav a {
  padding: 9px 10px;
  border-radius: 12px;
  color: #3f3934;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-board-nav a:hover,
.menu-board-nav a.is-active {
  background: #f1e8dd;
  color: var(--red);
}

.menu-board-nav a.is-active {
  transform: translateX(2px);
}

#menu-content .menu-board-shell {
  padding: 34px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    url("https://nickysredhots.net/wp-content/uploads/2024/07/Nickya-Logo.png") center 220px/420px no-repeat,
    #ffffff;
  box-shadow: 0 22px 55px rgba(23, 18, 14, 0.08);
}

.menu-board-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.1);
}

.menu-board-intro h3 {
  max-width: 650px;
  margin: 6px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.12;
}

.menu-board-sections {
  display: grid;
  gap: 34px;
}

.menu-board-category {
  scroll-margin-top: 120px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.1);
}

.menu-board-category:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-category-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.menu-category-head h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

#menu-content .menu-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 12px;
}

.menu-subgroups {
  display: grid;
  gap: 34px;
}

.menu-subgroup {
  display: grid;
  gap: 14px;
}

.menu-subgroup + .menu-subgroup {
  padding-top: 10px;
}

.menu-subgroup-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.menu-subgroup-head h4 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
}

.menu-subgroup-head p {
  margin: 6px auto 0;
  color: #4e4a46;
  font-size: 0.9rem;
  line-height: 1.45;
}

.menu-subgroup-note {
  display: grid;
  gap: 3px;
  margin-top: 6px;
}

.menu-subgroup-note p {
  margin: 0;
}

.menu-subgroup-addons {
  display: grid;
  gap: 1px;
  margin-top: 2px;
}

.menu-subgroup-addons span {
  color: var(--red);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.18;
}

#menu-content .menu-card-item {
  min-height: auto;
  padding: 16px 0 14px;
  border: 0;
  border-bottom: 1px dotted rgba(27, 27, 27, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#menu-content .menu-card-item h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 5px;
  color: #1b1b1b;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.popular-menu-badge {
  display: inline-flex;
  width: 24px;
  height: 24px;
  padding: 2px;
  border: 1px solid rgba(200, 30, 30, 0.32);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(200, 30, 30, 0.14);
  flex: 0 0 auto;
}

.popular-menu-badge img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

#menu-content .menu-card-item p {
  max-width: 100%;
  margin: 0;
  color: #4e4a46;
  font-size: 0.95rem;
  line-height: 1.45;
  text-transform: none;
}

#menu-content .menu-card-item.no-description {
  justify-content: flex-end;
}

#menu-content .menu-card-divider {
  display: none;
}

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

  .menu-board-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .menu-board-nav span {
    flex-basis: 100%;
  }
}

@media (max-width: 680px) {
  #menu-content .menu-board-shell {
    padding: 24px;
    background-size: 300px;
  }

  .menu-board-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  #menu-content .menu-card-grid {
    grid-template-columns: 1fr;
  }
}
.menu-note-block {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
}

.menu-note-block.compact {
  gap: 8px;
}

.menu-note-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  padding: 10px 12px;
  border-left: 3px solid rgba(170, 32, 32, 0.9);
  background: rgba(170, 32, 32, 0.05);
  border-radius: 8px;
}

.menu-note-item.accent {
  background: rgba(170, 32, 32, 0.09);
}

.menu-note-item.subtle {
  background: rgba(27, 27, 27, 0.04);
  border-left-color: rgba(27, 27, 27, 0.35);
}

.menu-note-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f1f1f;
}

.menu-note-item.subtle .menu-note-label {
  color: #4e4a46;
}

.menu-note-value {
  color: #38332f;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .menu-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .menu-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .menu-gallery {
    grid-template-columns: 1fr;
  }
}

.renovation-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(18px, 6vh, 64px) 24px 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.renovation-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.renovation-card {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  grid-template-columns: 1fr;
  border: 1px solid rgba(23, 18, 14, 0.13);
  border-radius: 20px;
  background: #fbf7f1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s ease;
}

.renovation-modal.is-visible .renovation-card {
  transform: translateY(0) scale(1);
}

.renovation-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px;
  border: 1px solid rgba(23, 18, 14, 0.12);
  border-radius: 50%;
  background: transparent;
  color: #17120e;
  cursor: pointer;
  font: 400 1.8rem/1 Arial, sans-serif;
  box-shadow: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.renovation-close:hover,
.renovation-close:focus-visible {
  background: #fff;
  transform: scale(1.06);
}

.renovation-close:focus-visible {
  outline: 3px solid rgba(213, 32, 32, 0.3);
  outline-offset: 2px;
}

.renovation-visual {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #d52020, #991010);
  color: #fff;
  text-align: center;
}

.renovation-visual::before,
.renovation-visual::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.renovation-visual::before {
  top: -72px;
  left: -82px;
}

.renovation-visual::after {
  right: -92px;
  bottom: -82px;
}

.renovation-visual img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(77, 4, 4, 0.28);
}

.renovation-visual span,
.renovation-visual small {
  position: relative;
  z-index: 1;
}

.renovation-visual span {
  font-size: 1.05rem;
  font-weight: 900;
}

.renovation-visual small {
  margin-top: 7px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.renovation-content {
  align-self: center;
  padding: 44px 40px 36px;
}

.renovation-kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.renovation-content h2 {
  max-width: 410px;
  margin: 18px 0 20px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.renovation-date {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 13px 15px;
  border-left: 4px solid var(--red);
  border-radius: 0 16px 16px 0;
  background: #f0e8de;
}

.renovation-date span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.renovation-date strong {
  font-size: 1rem;
  line-height: 1.35;
}

.renovation-content p {
  margin: 0;
  color: #625b55;
  font-size: 1rem;
  line-height: 1.65;
}

.renovation-content p strong {
  display: block;
  margin-top: 12px;
  color: #17120e;
  font-weight: 600;
}

.renovation-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.renovation-actions button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: 800 0.88rem/1 Inter, sans-serif;
}

.renovation-actions button {
  background: var(--red);
  color: #fff;
}

@media (max-width: 700px) {
  .renovation-modal {
    padding: 14px;
  }

  .renovation-card {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .renovation-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .renovation-visual {
    min-height: 142px;
    padding: 18px;
  }

  .renovation-visual img {
    width: 70px;
    height: 70px;
    margin-bottom: 9px;
  }

  .renovation-visual span {
    font-size: 1rem;
  }

  .renovation-visual small {
    margin-top: 4px;
    font-size: 0.56rem;
  }

  .renovation-content {
    padding: 64px 24px 26px;
  }

  .renovation-content h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .renovation-actions {
    align-items: stretch;
  }

  .renovation-actions button {
    width: 100%;
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .renovation-modal,
  .renovation-card {
    transition: none;
  }
}

/* Homepage */
.home-page {
  background: #f7f3ed;
}

.home-page .home-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border: 0;
  color: #fff;
}

.home-page .home-header .nav-wrap {
  margin-top: 18px;
  min-height: 72px;
  padding: 8px 18px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #181410;
  box-shadow: 0 14px 40px rgba(23, 18, 14, 0.18);
  backdrop-filter: blur(16px);
}

.home-page .home-header .nav-cta .btn {
  min-height: 44px;
}

.home-page .home-header .brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

@media (min-width: 1181px) {
  .unified-header .nav-wrap,
  .home-page .home-header .nav-wrap {
    width: min(1300px, calc(100% - 24px));
    padding-right: 24px;
  }
}

.home-page .home-header .brand .eyebrow,
.home-page .home-header .nav-links a {
  color: rgba(255, 255, 255, 0.76);
}

.home-page .home-header .nav-links a:hover {
  color: #fff;
}

.home-page .home-header .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.interior-page {
  background: #f7f3ed;
}

.unified-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  border: 0;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(16px);
}

.unified-header .nav-wrap {
  min-height: 72px;
  height: 72px;
  padding: 8px 24px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #181410;
  color: #fff;
  box-shadow: 0 14px 40px rgba(23, 18, 14, 0.14);
}

.unified-header .brand {
  min-width: 214px;
  gap: 11px;
  flex-shrink: 0;
}

.unified-header .brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.unified-header .brand strong {
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.05;
}

.unified-header .brand .eyebrow {
  white-space: nowrap;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.unified-header .brand .eyebrow,
.unified-header .nav-links a {
  color: rgba(255, 255, 255, 0.72);
}

.unified-header .nav-links {
  flex: 1;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 24px);
}

.unified-header .nav-links a {
  padding: 8px 0;
  white-space: nowrap;
  font-size: 0.86rem;
  line-height: 1;
}

.unified-header .nav-links a:hover {
  color: #fff;
}

.unified-header .btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.unified-header .nav-cta {
  flex-shrink: 0;
  gap: 10px;
}

.unified-header .nav-cta .btn {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 1;
}

.unified-header .nav-cta .btn-outline {
  min-width: 88px;
}

.unified-header .nav-cta .btn-primary {
  min-width: 142px;
}

.unified-header .mobile-menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.unified-header .mobile-menu-toggle span {
  background: #fff;
}

@media (min-width: 1181px) and (max-width: 1300px) {
  .unified-header .nav-wrap {
    gap: 12px;
  }

  .unified-header .brand {
    gap: 8px;
  }

  .unified-header .brand .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .unified-header .nav-links {
    gap: 14px;
  }

  .unified-header .nav-cta {
    gap: 8px;
  }

  .unified-header .nav-cta .btn {
    padding-inline: 16px;
  }

  .unified-header .nav-cta .btn-outline {
    min-width: 84px;
  }

  .unified-header .nav-cta .btn-primary {
    min-width: 134px;
  }
}

@media (max-width: 1180px) {
  .unified-header .nav-wrap,
  .home-page .home-header .nav-wrap {
    position: relative;
    height: 60px;
    min-height: 60px;
    padding: 6px 12px;
    border-radius: 20px;
  }

  .unified-header .brand img,
  .home-page .home-header .brand img {
    width: 40px;
    height: 40px;
  }

  .unified-header .brand {
    min-width: 0;
  }

  .unified-header .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .unified-header .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .unified-header .mobile-menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }

  .unified-header .mobile-menu-toggle span {
    width: 19px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .unified-header .mobile-menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .unified-header .mobile-menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
  }

  .unified-header .mobile-menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .unified-header .nav-cta {
    display: none;
  }

  .unified-header .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 12px 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: #181410;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    z-index: 30;
  }

  .unified-header .nav-links.is-open {
    display: flex;
  }

  .unified-header .nav-links > a {
    width: 100%;
    padding: 12px 4px;
    min-height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  .unified-header .nav-links a:hover,
  .unified-header .nav-links a:focus-visible {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
  }

  .unified-header .nav-links .mobile-order-menu {
    display: grid;
    width: 100%;
    gap: 8px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .unified-header .mobile-order-menu .order-menu-toggle {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 0;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
  }

  .unified-header .mobile-order-menu .order-menu-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .unified-header .mobile-order-menu.is-open .order-menu-panel {
    display: grid;
  }

  .unified-header .mobile-order-menu .order-option {
    background: #fff;
  }
}

.pdf-menu-page {
  min-height: 80vh;
}

.seamless-menu-page {
  background: #050505;
  color: #fff;
}

.pdf-menu-heading {
  margin-bottom: 42px;
  text-align: center;
}

.pdf-menu-heading h1 {
  margin: 10px 0 8px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: #d2a858;
}

.pdf-menu-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.pdf-menu-heading .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.menu-page-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.menu-page-gallery img {
  width: 100%;
  display: block;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.menu-page-preview {
  position: relative;
  display: block;
  overflow: hidden;
  background: #181410;
}

.menu-page-preview:hover img {
  transform: scale(1.006);
}

.menu-page-preview img {
  transition: transform 0.25s ease;
}

.menu-download-row {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.menu-download-row a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.video-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #17120e;
  color: #fff;
}

.video-hero-media,
.video-hero-shade {
  position: absolute;
  inset: 0;
}

.video-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 8, 6, 0.82) 0%, rgba(11, 8, 6, 0.43) 48%, rgba(11, 8, 6, 0.14) 75%),
    linear-gradient(0deg, rgba(11, 8, 6, 0.76) 0%, transparent 40%);
}

.video-hero-content {
  position: relative;
  z-index: 4;
  padding-bottom: 170px;
}

.hero-kicker {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.video-hero h1 {
  max-width: 860px;
  margin: 22px 0 18px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(4.4rem, 9.5vw, 8.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.video-hero-content > p {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

.btn-large {
  min-height: 54px;
  padding-inline: 25px;
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-bottom-bar {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 9, 7, 0.46);
  backdrop-filter: blur(16px);
}

.hero-bottom-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-detail {
  display: grid;
  gap: 6px;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hours-dot {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  color: #27c76f;
  background: #27c76f;
  box-shadow: 0 0 0 0 rgba(39, 199, 111, 0.52);
  animation: hoursPulse 1.8s ease-out infinite;
}

.hours-status.is-closed .hours-dot {
  color: #ff4b4b;
  background: #ff4b4b;
  box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.54);
}

@keyframes hoursPulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero-detail span,
.visit-details span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-intro {
  padding-top: 72px;
  padding-bottom: 44px;
}

.intro-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.intro-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.category-pills {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pills a {
  padding: 14px 20px;
  border: 1px solid #d8cfc4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-pills a:hover {
  transform: translateY(-2px);
  background: #17120e;
  color: #fff;
}

.home-order-section {
  position: relative;
  padding-top: 28px;
  padding-bottom: 54px;
}

.home-order-section::after {
  display: block;
  width: min(880px, calc(100% - 64px));
  height: 1px;
  margin: 58px auto 0;
  background: linear-gradient(90deg, transparent, rgba(27, 27, 27, 0.16), transparent);
  content: "";
}

.order-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.order-choice-card {
  display: flex;
  min-height: 138px;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(23, 18, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-choice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(23, 18, 14, 0.12);
}

.order-choice-card .order-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.order-choice-card strong {
  display: block;
  color: #17120e;
  font-size: 1.04rem;
  line-height: 1.1;
}

.order-choice-card span:not(.order-option-icon) {
  display: block;
  margin-top: 7px;
  color: #625b55;
  font-size: 0.96rem;
  line-height: 1.45;
}

.mobile-sticky-order {
  display: none;
}

.showcase-section {
  padding-bottom: 100px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.95fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 20px;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
}

.showcase-card-wide {
  grid-row: 1 / 3;
}

.showcase-menu-card {
  min-height: 520px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  align-content: space-between;
  gap: 34px;
  color: #17120e;
  background: #ffffff;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: 0 22px 55px rgba(23, 18, 14, 0.08);
}

.showcase-menu-copy {
  max-width: 620px;
}

.showcase-menu-copy h3 {
  margin: 10px 0 16px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.55rem, 4.2vw, 4.35rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.showcase-menu-copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #5a534d;
  font-size: 1.02rem;
  line-height: 1.7;
}

.showcase-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(27, 27, 27, 0.1);
  list-style: none;
}

.showcase-menu-list li {
  position: relative;
  padding-left: 13px;
  color: #17120e;
  font-size: 0.84rem;
  font-weight: 750;
}

.showcase-menu-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.showcase-photo-card {
  min-height: 280px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(12, 8, 5, 0.78), transparent 65%);
}

.showcase-overlay > span {
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-overlay h2,
.showcase-overlay h3,
.showcase-card-red h3 {
  margin: 0 0 20px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1;
}

.showcase-overlay h2 {
  max-width: 650px;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.showcase-overlay h3,
.showcase-card-red h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.text-link {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.showcase-card-red {
  min-height: 150px;
  padding: 30px 36px;
  grid-column: 1 / -1;
  background: var(--red);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 26px;
}

.showcase-card-red .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.showcase-card-red .btn {
  width: fit-content;
  flex-shrink: 0;
}

.showcase-card-red h3 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.story-section {
  background: #181410;
  color: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.story-copy h2 {
  max-width: 780px;
  margin: 14px 0 24px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.story-copy p {
  max-width: 710px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
  line-height: 1.8;
}

.dark-link {
  color: #fff;
}

.story-stats {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.story-stats div {
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.story-stats strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.story-stats span {
  color: rgba(255, 255, 255, 0.57);
  text-align: right;
}

.gallery-section {
  padding-top: 32px;
  padding-bottom: 56px;
  overflow: hidden;
}

.gallery-heading {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.gallery-heading h2 {
  margin: 10px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.gallery-heading p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-heading-details .text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
}

.home-page .story-copy h2,
.home-page .visit-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 38%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid #ded5ca;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 44px rgba(23, 18, 14, 0.07);
}

.carousel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel-card-copy {
  min-height: 190px;
  padding: 24px;
}

.carousel-card-copy > span {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.carousel-card-copy h3 {
  margin: 0 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.carousel-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.carousel-footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.carousel-dots,
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfc5ba;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  width: 30px;
  background: var(--red);
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #d8cfc4;
  border-radius: 50%;
  background: #fff;
  color: #17120e;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carousel-arrow:hover {
  background: #17120e;
  color: #fff;
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-page #contact.visit-section {
  padding: 100px 0;
  background-color: #a71919;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #b91f1f 0%, #8f1111 100%);
  color: #fff;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 72px;
  align-items: center;
}

.visit-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.visit-copy h2 {
  max-width: 620px;
  margin: 12px 0 28px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.88;
  color: #fff;
  text-shadow: 0 2px 24px rgba(60, 0, 0, 0.18);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(75, 0, 0, 0.22);
  color: #fff;
}

.visit-location {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.visit-details {
  display: grid;
  gap: 0;
  padding: 8px 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(68, 0, 0, 0.2);
  box-shadow: 0 24px 60px rgba(67, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.visit-details div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 20px;
}

.visit-details strong {
  line-height: 1.6;
  color: #fff;
  font-weight: 800;
}

.visit-details span {
  color: rgba(255, 255, 255, 0.76);
}

.service-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-bubbles span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.085);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.visit-map-card {
  position: relative;
  width: 100%;
  height: clamp(300px, 25vw, 360px);
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(60, 0, 0, 0.16);
  box-shadow: 0 24px 60px rgba(67, 0, 0, 0.18);
}

.visit-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.visit-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.visit-map-card > a {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 11px 15px;
  border-radius: 999px;
  color: #121212;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.home-footer {
  padding: 26px 0;
  background: #181410;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-footer .footer-wrap {
  min-height: 70px;
  justify-content: flex-start;
  gap: 42px;
  flex-wrap: wrap;
}

.home-footer .footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.home-footer p {
  color: #c9c1b8;
}

.home-footer .footer-social a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.home-footer .footer-social a:hover {
  border-color: var(--red);
  background: var(--red);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .home-page .home-header .nav-wrap {
    border-radius: 20px;
  }

  .home-page .home-header .mobile-menu-toggle {
    background: transparent;
  }

  .home-page .home-header .mobile-menu-toggle span {
    background: #fff;
  }

  .home-page .home-header .nav-links {
    top: calc(100% + 10px);
    background: #181410;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .home-page .home-header .nav-links > a {
    background: transparent;
    color: #fff;
  }

  .unified-header .nav-wrap {
    border-radius: 20px;
  }

  .unified-header .nav-links {
    top: calc(100% + 10px);
    background: #181410;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .unified-header .nav-links > a {
    background: transparent;
    color: #fff;
  }

  .intro-heading,
  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .visit-grid {
    gap: 50px;
  }
}

@media (max-width: 780px) {
  .mobile-sticky-order {
    display: grid;
  }

  .mobile-sticky-order.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  .hero-order-menu .order-menu-panel {
    width: min(340px, calc(100vw - 32px));
    grid-template-columns: 1fr;
  }

  .order-choice-grid {
    grid-template-columns: 1fr;
  }

  .order-choice-card {
    min-height: auto;
    align-items: center;
    padding: 20px;
  }

  .home-order-section {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .home-order-section::after {
    margin-top: 28px;
  }

  .home-page .home-header .nav-wrap {
    margin-top: 10px;
    min-height: 60px;
  }

  .home-page .home-header .brand img {
    width: 40px;
    height: 40px;
  }

  .home-page .home-header .brand .eyebrow {
    display: none;
  }

  .unified-header {
    padding: 10px 0;
  }

  .unified-header .nav-wrap {
    min-height: 60px;
  }

  .unified-header .brand img {
    width: 40px;
    height: 40px;
  }

  .unified-header .brand .eyebrow {
    display: none;
  }

  .menu-page-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-download-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-hero {
    min-height: 780px;
  }

  .video-hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 8, 6, 0.88) 0%, rgba(11, 8, 6, 0.2) 70%),
      linear-gradient(90deg, rgba(11, 8, 6, 0.45), transparent);
  }

  .video-hero-content {
    padding-bottom: 190px;
  }

  .video-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.3rem);
  }

  .hero-bottom-inner {
    min-height: 174px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: center;
  }

  .hero-detail:nth-child(2) {
    display: grid;
  }

  .hero-detail strong {
    font-size: 1rem;
  }

  .hours-status {
    gap: 8px;
  }

  .home-intro {
    padding-top: 72px;
    padding-bottom: 65px;
  }

  .intro-heading {
    gap: 20px;
  }

  .intro-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .category-pills {
    margin-top: 34px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .showcase-card-wide {
    grid-row: auto;
  }

  .showcase-menu-card {
    min-height: auto;
  }

  .showcase-photo-card {
    min-height: 340px;
  }

  .showcase-card-red {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .story-section,
  .gallery-section,
  .visit-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .carousel-track {
    grid-auto-columns: 82%;
    gap: 14px;
  }

  .carousel-card-copy {
    min-height: 175px;
    padding: 21px;
  }

  .home-footer .footer-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .home-page .home-header .brand strong {
    max-width: 110px;
    line-height: 1.05;
  }

  .video-hero-content > p {
    font-size: 0.98rem;
  }

  .video-hero .hero-actions {
    align-items: stretch;
  }

  .showcase-grid {
    grid-auto-rows: auto;
  }

  .showcase-overlay,
  .showcase-card-red {
    padding: 24px;
  }

  .showcase-photo-card {
    min-height: 310px;
  }

  .visit-details div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* catering page - match menu board structure */
.catering-board-page .menu-board-section {
  background: #f4efe8;
}

#catering-content .menu-board-shell,
.catering-board-shell {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(23, 18, 14, 0.08);
}

.catering-board-intro {
  margin: 0;
  padding: 34px;
}

.catering-board-intro .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  text-align: center;
}

.catering-board-sections {
  display: grid;
  gap: 0;
}

.catering-board-category {
  padding: 0 34px 44px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.1);
}

.catering-board-category:last-child {
  border-bottom: 0;
}

.catering-category-head {
  margin: 0 -34px 28px;
  padding: 26px 34px;
  background: var(--red);
  color: #ffffff;
}

.catering-category-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.catering-category-intro {
  max-width: 980px;
  margin: 0 auto 32px;
  color: #6a625c;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}

.catering-note {
  display: grid;
  gap: 5px;
  max-width: 760px;
  margin: -18px auto 32px;
  text-align: center;
}

.catering-note p {
  margin: 0;
  color: #5a5550;
  font-size: 0.95rem;
  line-height: 1.45;
}

.catering-note-addons {
  display: grid;
  gap: 2px;
}

.catering-note-addons span,
.catering-item-details span {
  color: var(--red);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.35;
}

.catering-item-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.catering-item-card {
  display: flex;
  min-height: 132px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.45);
  flex-direction: column;
  justify-content: flex-start;
}

.catering-item-card h4 {
  margin: 0 0 8px;
  color: #38332f;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.catering-item-card p {
  margin: 0 0 9px;
  color: #5a5550;
  font-size: 0.93rem;
  line-height: 1.55;
}

.catering-item-card.no-description {
  justify-content: flex-end;
}

.catering-item-details {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .catering-item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .catering-board-intro {
    padding: 24px;
  }

  .catering-board-category {
    padding: 0 24px 36px;
  }

  .catering-category-head {
    margin: 0 -24px 24px;
    padding: 22px 24px;
  }

  .catering-item-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catering-item-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .section-head h1,
  .section-head h2,
  #reviews .section-head h2,
  .menu-board-shell h3,
  .catering-section-head h3 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

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

  .facility {
    flex-basis: 100%;
  }

  .menu-card-item,
  #menu-content .menu-card-item {
    min-height: auto;
  }
}
