.hc-menu {
  --hc-menu-accent: #171717;
  --hc-menu-button-text: #fff;
  --hc-menu-card-bg: #fff;
  --hc-menu-text: #171717;
  --hc-menu-muted: color-mix(in srgb, var(--hc-menu-text) 68%, transparent);
  --hc-menu-border: color-mix(in srgb, var(--hc-menu-text) 14%, transparent);
  --hc-menu-radius: 18px;
  color: var(--hc-menu-text);
}

.hc-menu__header { max-width: 760px; margin-bottom: clamp(28px, 5vw, 54px); }
.hc-menu__eyebrow { margin: 0 0 10px; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hc-menu__heading { margin: 0; font-size: clamp(2rem, 4vw, 4.4rem); line-height: .98; }
.hc-menu__body { margin-top: 18px; color: var(--hc-menu-muted); }
.hc-menu__body > :first-child { margin-top: 0; }
.hc-menu__body > :last-child { margin-bottom: 0; }

.hc-menu__grid {
  display: grid;
  grid-template-columns: repeat(var(--hc-menu-columns, 3), minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.hc-menu-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--hc-menu-border);
  border-radius: var(--hc-menu-radius);
  background: var(--hc-menu-card-bg);
  color: var(--hc-menu-text);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.hc-menu-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--hc-menu-text) 25%, transparent); box-shadow: 0 18px 46px color-mix(in srgb, var(--hc-menu-text) 11%, transparent); }
.hc-menu-card__media { position: relative; flex: 0 0 auto; width: 100%; overflow: hidden; aspect-ratio: 4 / 3; background: color-mix(in srgb, var(--hc-menu-text) 5%, transparent); }
.hc-menu-card .hc-menu-card__media > .hc-menu-card__image { position: absolute; inset: 0; display: block; width: 100%; max-width: none; height: 100% !important; object-fit: cover; object-position: var(--hc-menu-image-position, 50% 50%); transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.hc-menu-card:hover .hc-menu-card__image { transform: scale(1.025); }
.hc-menu-card__badge { position: absolute; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; background: var(--hc-menu-card-bg); color: var(--hc-menu-text); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hc-menu-card__content { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: clamp(20px, 3vw, 30px); }
.hc-menu-card__title-row { display: flex; width: 100%; align-items: baseline; justify-content: space-between; gap: 18px; }
.hc-menu-card__title { margin: 0; color: var(--hc-menu-text); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.1; }
.hc-menu-card__price { flex: 0 0 auto; margin: 0; color: var(--hc-menu-text); font-weight: 700; white-space: nowrap; }
.hc-menu-card__description { margin: 14px 0 22px; color: var(--hc-menu-muted); line-height: 1.55; }
.hc-menu-card__button,
.hc-menu__full-button,
.hc-menu-ordering-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75em;
  border-radius: 999px;
  background: var(--hc-menu-accent);
  color: var(--hc-menu-button-text);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}
.hc-menu-card__button { margin-top: auto; padding: 13px 18px; }
.hc-menu__full-button,
.hc-menu-ordering-button { padding: 17px 25px; }
.hc-menu-card__button:hover,
.hc-menu__full-button:hover,
.hc-menu-ordering-button:hover { color: var(--hc-menu-button-text); opacity: .88; transform: translateY(-1px); }
.hc-menu-card__button:focus-visible,
.hc-menu__full-button:focus-visible,
.hc-menu-ordering-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--hc-menu-accent) 32%, transparent); outline-offset: 4px; }
.hc-menu-card__button span,
.hc-menu__full-button span,
.hc-menu-ordering-button span { transition: transform 180ms ease; }
.hc-menu-card__button:hover span,
.hc-menu__full-button:hover span,
.hc-menu-ordering-button:hover span { transform: translateX(3px); }
.hc-menu-card__unavailable { margin-top: auto; color: var(--hc-menu-muted); font-size: .9rem; font-weight: 700; }
.hc-menu-card.is-unavailable .hc-menu-card__image { filter: grayscale(.4); opacity: .72; }
.hc-menu__footer { display: flex; justify-content: center; margin-top: clamp(30px, 5vw, 58px); }

@media (max-width: 1024px) { .hc-menu__grid { --hc-menu-columns: 2; } }
@media (max-width: 640px) {
  .hc-menu__grid { --hc-menu-columns: 1; }
  .hc-menu-card__title-row { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .hc-menu-card, .hc-menu-card__image, .hc-menu-card__button, .hc-menu__full-button, .hc-menu-ordering-button, .hc-menu-card__button span, .hc-menu__full-button span, .hc-menu-ordering-button span { transition: none; }
}

/* Menu Explorer */
.hc-menu-explorer {
  --hc-mx-surface:#fff;
  --hc-mx-text:#191919;
  --hc-mx-muted:#696762;
  --hc-mx-accent:#c6292f;
  --hc-mx-accent-text:#fff;
  --hc-mx-border:color-mix(in srgb,var(--hc-mx-text) 16%,transparent);
  --hc-mx-radius:22px;
  width:100%; margin-inline:auto; color:var(--hc-mx-text);
}
.hc-menu-explorer__surface { overflow:hidden; border:1px solid var(--hc-mx-border); border-radius:var(--hc-mx-radius); background:var(--hc-mx-surface); padding:clamp(24px,4.5vw,64px); }
.hc-menu-explorer__header { max-width:760px; margin:0 auto clamp(28px,4vw,48px); text-align:center; }
.hc-menu-explorer__eyebrow,.hc-menu-explorer__menu-eyebrow { margin-bottom:8px; color:var(--hc-mx-accent); font-size:.72rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.hc-menu-explorer__heading,.hc-menu-explorer__menu-title,.hc-menu-explorer__section-title,.hc-menu-explorer__item-title { color:var(--hc-mx-text); }
.hc-menu-explorer__heading { margin:0; font-size:clamp(2rem,4vw,3.75rem); line-height:1; }
.hc-menu-explorer__intro { margin-top:16px; color:var(--hc-mx-muted); }
.hc-menu-explorer__intro>:first-child { margin-top:0; }.hc-menu-explorer__intro>:last-child { margin-bottom:0; }
.hc-menu-explorer__tabs { display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; border-bottom:1px solid var(--hc-mx-border); }
.hc-menu-explorer__tabs::-webkit-scrollbar { display:none; }
.hc-menu-explorer__tab { position:relative; flex:1 0 auto; appearance:none; border:0; background:transparent; color:var(--hc-mx-muted); padding:15px 20px; font:inherit; font-weight:750; cursor:pointer; }
.hc-menu-explorer__tab::after { content:""; position:absolute; right:12px; bottom:-1px; left:12px; height:3px; border-radius:3px 3px 0 0; background:var(--hc-mx-accent); transform:scaleX(0); transition:transform 180ms ease; }
.hc-menu-explorer__tab.is-active { color:var(--hc-mx-accent); }.hc-menu-explorer__tab.is-active::after { transform:scaleX(1); }
.hc-menu-explorer__tab:focus-visible,.hc-menu-explorer__choose:focus-visible,.hc-menu-explorer__pdf:focus-visible,.hc-menu-explorer__section-toggle:focus-visible,.hc-menu-explorer select:focus-visible { outline:3px solid color-mix(in srgb,var(--hc-mx-accent) 28%,transparent); outline-offset:3px; }
.hc-menu-explorer__mobile-picker { display:none; }
.hc-menu-explorer__panel { padding-top:clamp(28px,4vw,52px); }.hc-menu-explorer__panel[hidden] { display:none; }
.hc-menu-explorer__menu-header { max-width:720px; margin-bottom:clamp(28px,4vw,44px); }
.hc-menu-explorer__menu-title { margin:0; font-size:clamp(1.75rem,3vw,2.75rem); line-height:1.05; }
.hc-menu-explorer__description { margin:.45em 0 0; color:var(--hc-mx-muted); line-height:1.55; }
.hc-menu-explorer__sections { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(34px,5vw,70px); }
.hc-menu-explorer__section { min-width:0; }.hc-menu-explorer__section-toggle { display:block; width:100%; padding:0 0 13px; border:0; border-bottom:1px solid var(--hc-mx-border); background:transparent; text-align:left; color:inherit; pointer-events:none; }
.hc-menu-explorer__section-title { display:block; font-size:clamp(1.15rem,2vw,1.5rem); font-weight:750; line-height:1.15; }
.hc-menu-explorer__section-description { display:block; margin-top:5px; color:var(--hc-mx-muted); font-size:.88rem; }
.hc-menu-explorer__items { display:block; }
.hc-menu-explorer__item { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; padding:18px 0; border-bottom:1px solid var(--hc-mx-border); }
.hc-menu-explorer__item-title { margin:0; font-size:1rem; font-weight:760; line-height:1.25; }.hc-menu-explorer__item .hc-menu-explorer__description { font-size:.9rem; }
.hc-menu-explorer__price { flex:0 0 auto; font-weight:780; white-space:nowrap; }.hc-menu-explorer__badge { display:inline-block; margin-top:9px; color:var(--hc-mx-accent); font-size:.68rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.hc-menu-explorer__actions { display:flex; align-items:center; gap:20px; margin-top:clamp(30px,4vw,52px); }
.hc-menu-explorer__choose { appearance:none; border:1px solid var(--hc-mx-accent); border-radius:999px; background:var(--hc-mx-accent); color:var(--hc-mx-accent-text); padding:15px 24px; font:inherit; font-size:.78rem; font-weight:800; letter-spacing:.11em; text-transform:uppercase; cursor:pointer; }
.hc-menu-explorer__choose[aria-pressed="true"]::before { content:"✓"; margin-right:.65em; }.hc-menu-explorer__pdf { color:var(--hc-mx-accent); font-weight:750; text-underline-offset:4px; }
.hc-menu-explorer__empty { padding:24px; border:1px dashed #bbb; color:#666; text-align:center; }

/* Restaurant Menu mode */
.hc-menu-explorer--restaurant { position:relative; isolation:isolate; padding:clamp(8px,1.5vw,18px); }
.hc-menu-explorer--restaurant::before,.hc-menu-explorer--restaurant::after { content:""; position:absolute; z-index:-2; border:1px solid var(--hc-mx-border); border-radius:var(--hc-mx-radius); background:#f2ecdf; box-shadow:0 18px 44px color-mix(in srgb,var(--hc-mx-text) 9%,transparent); }
.hc-menu-explorer--restaurant::before { inset:4px 22px 12px 4px; transform:rotate(-.45deg); }
.hc-menu-explorer--restaurant::after { inset:18px 2px 2px 24px; z-index:-1; background:#e8dfcf; transform:rotate(.35deg); }
.hc-menu-explorer--restaurant .hc-menu-explorer__surface { position:relative; overflow:visible; box-shadow:0 15px 36px color-mix(in srgb,var(--hc-mx-text) 9%,transparent); }
.hc-menu-explorer--restaurant .hc-menu-explorer__header { max-width:none; margin-inline:0; text-align:left; }
.hc-menu-explorer--restaurant .hc-menu-explorer__heading { max-width:1000px; font-size:clamp(2.35rem,4.15vw,4.25rem); line-height:.98; }
.hc-menu-explorer--restaurant .hc-menu-explorer__header { margin-bottom:clamp(30px,3vw,38px); }
.hc-menu-explorer--restaurant .hc-menu-explorer__tabs { gap:4px; border:0; }
.hc-menu-explorer--restaurant .hc-menu-explorer__tab { border-radius:8px 8px 0 0; background:color-mix(in srgb,var(--hc-mx-border) 46%,var(--hc-mx-surface)); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; }
.hc-menu-explorer--restaurant .hc-menu-explorer__tab::after { display:none; }
.hc-menu-explorer--restaurant .hc-menu-explorer__tab.is-active { background:var(--hc-mx-accent); color:var(--hc-mx-accent-text); }
.hc-menu-explorer--restaurant .hc-menu-explorer__panel { margin-top:0; padding:clamp(26px,3vw,38px); border:1px solid var(--hc-mx-border); border-radius:0 0 12px 12px; background:color-mix(in srgb,var(--hc-mx-surface) 96%,var(--hc-mx-border)); box-shadow:0 10px 28px color-mix(in srgb,var(--hc-mx-text) 7%,transparent); }
.hc-menu-explorer__restaurant-layout { display:block; }
.hc-menu-explorer--restaurant .hc-menu-explorer__restaurant-layout { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr); gap:clamp(34px,4vw,54px); align-items:stretch; }
.hc-menu-explorer__menu-heading-row { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.hc-menu-explorer__count { flex:0 0 auto; color:var(--hc-mx-muted); font-size:.75rem; font-weight:750; letter-spacing:.08em; }
.hc-menu-explorer--restaurant .hc-menu-explorer__sections { display:block; }
.hc-menu-explorer--restaurant .hc-menu-explorer__section + .hc-menu-explorer__section { margin-top:24px; }
.hc-menu-explorer--restaurant .hc-menu-explorer__section-toggle { display:block; padding-bottom:9px; }
.hc-menu-explorer--restaurant .hc-menu-explorer__section-icon { display:none; }
.hc-menu-explorer--restaurant .hc-menu-explorer__items { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 26px; }
.hc-menu-explorer--restaurant .hc-menu-explorer__item { padding:11px 0; }
.hc-menu-explorer__menu-media { min-height:100%; margin:0; overflow:hidden; border-radius:10px; background:var(--hc-mx-border); }
.hc-menu-explorer__menu-media img { display:block; width:100%; height:100%; min-height:440px; object-fit:cover; }
.hc-menu-explorer--restaurant .hc-menu-explorer__actions { margin-top:30px; }
.hc-menu-explorer--restaurant .hc-menu-explorer__choose { display:inline-flex; align-items:center; justify-content:center; gap:18px; }
.hc-menu-explorer__selection-bridge { position:relative; z-index:3; width:max-content; max-width:calc(100% - 36px); margin:-1px auto -22px; border:1px solid var(--hc-mx-border); border-radius:0 0 9px 9px; background:var(--hc-mx-surface); padding:11px 20px; color:var(--hc-mx-muted); font-size:.72rem; font-weight:750; letter-spacing:.06em; text-transform:uppercase; box-shadow:0 8px 18px color-mix(in srgb,var(--hc-mx-text) 7%,transparent); }
.hc-menu-explorer__selection-copy { display:inline; }.hc-menu-explorer__selection-bridge strong { color:var(--hc-mx-text); }.hc-menu-explorer__selection-bridge button { appearance:none; margin-left:12px; border:0; background:transparent; color:var(--hc-mx-accent); font:inherit; text-decoration:underline; text-underline-offset:3px; cursor:pointer; }

@media (max-width:767px) {
  .hc-menu-explorer__surface { overflow:visible; padding:24px 18px 30px; }
  .hc-menu-explorer__header { margin-bottom:22px; text-align:left; }
  .hc-menu-explorer__mobile-picker { display:block; z-index:4; margin:0 -8px 18px; padding:10px 8px; background:var(--hc-mx-surface); }
  .hc-menu-explorer[data-sticky-mobile="yes"] .hc-menu-explorer__mobile-picker { position:sticky; top:0; }
  .hc-menu-explorer__mobile-picker label { display:block; margin:0 0 6px; color:var(--hc-mx-muted); font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
  .hc-menu-explorer__mobile-picker select { width:100%; min-height:50px; appearance:none; border:1px solid var(--hc-mx-border); border-radius:12px; background:var(--hc-mx-surface) linear-gradient(45deg,transparent 50%,var(--hc-mx-text) 50%) calc(100% - 18px) 21px/6px 6px no-repeat; color:var(--hc-mx-text); padding:0 42px 0 14px; font:inherit; font-weight:750; }
  .hc-menu-explorer__tabs { display:none; }
  .hc-menu-explorer[data-mobile-navigation="scroll-tabs"] .hc-menu-explorer__mobile-picker { display:none; }
  .hc-menu-explorer[data-mobile-navigation="scroll-tabs"] .hc-menu-explorer__tabs { display:flex; margin-inline:-18px; padding-inline:10px; }
  .hc-menu-explorer__panel { padding-top:12px; }.hc-menu-explorer__menu-header { margin-bottom:24px; }
  .hc-menu-explorer__sections { display:block; }
  .hc-menu-explorer__section { border-top:1px solid var(--hc-mx-border); }
  .hc-menu-explorer__section:last-child { border-bottom:1px solid var(--hc-mx-border); }
  .hc-menu-explorer__section-toggle { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:18px 2px; border:0; pointer-events:auto; cursor:pointer; }
  .hc-menu-explorer .hc-menu-explorer__section-toggle,
  .hc-menu-explorer .hc-menu-explorer__section-toggle:hover,
  .hc-menu-explorer .hc-menu-explorer__section-toggle:focus,
  .hc-menu-explorer .hc-menu-explorer__section-toggle:focus-visible,
  .hc-menu-explorer .hc-menu-explorer__section-toggle:active {
    appearance:none !important;
    -webkit-appearance:none !important;
    width:100% !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:var(--hc-mx-text) !important;
    padding:18px 2px !important;
    box-shadow:none !important;
    filter:none !important;
    transform:none !important;
    -webkit-tap-highlight-color:transparent;
  }
  .hc-menu-explorer .hc-menu-explorer__section-toggle:focus-visible { outline:2px solid var(--hc-mx-accent) !important; outline-offset:3px; }
  .hc-menu-explorer__section-icon { position:relative; flex:0 0 16px; width:16px; height:16px; }.hc-menu-explorer__section-icon::before,.hc-menu-explorer__section-icon::after { content:""; position:absolute; top:7px; left:1px; width:14px; height:2px; background:var(--hc-mx-accent); }.hc-menu-explorer__section-icon::after { transform:rotate(90deg); transition:transform 180ms ease; }.hc-menu-explorer__section.is-open .hc-menu-explorer__section-icon::after { transform:rotate(0); }
  .hc-menu-explorer__section .hc-menu-explorer__items { display:none; padding-bottom:10px; }.hc-menu-explorer__section.is-open .hc-menu-explorer__items { display:block; }
  .hc-menu-explorer[data-mobile-navigation="select"] .hc-menu-explorer__section .hc-menu-explorer__items { display:block; }
  .hc-menu-explorer[data-mobile-navigation="select"] .hc-menu-explorer__section-toggle { pointer-events:none; }
  .hc-menu-explorer__actions { position:sticky; bottom:max(12px,env(safe-area-inset-bottom,0px)); z-index:3; flex-direction:column; align-items:stretch; gap:12px; margin:26px -8px 0; padding:18px 8px 12px; border-radius:0 0 10px 10px; background:linear-gradient(to bottom,transparent,var(--hc-mx-surface) 25%); text-align:center; }
  .hc-menu-explorer__choose { min-height:50px; }
  .hc-menu-explorer--restaurant { padding:5px; }
  .hc-menu-explorer--restaurant::before { inset:0 10px 8px 0; }.hc-menu-explorer--restaurant::after { inset:10px 0 0 10px; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__surface { overflow:visible; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__heading { font-size:clamp(2rem,10vw,3rem); letter-spacing:.03em; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__panel { margin-inline:-10px; padding:24px 18px; border-radius:12px; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__restaurant-layout { display:block; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__sections { display:block; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__section { display:block; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__section-toggle { display:flex; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__items { display:none; }
  .hc-menu-explorer--restaurant .hc-menu-explorer__section.is-open .hc-menu-explorer__items { display:block; }
  .hc-menu-explorer__menu-media { display:none; }
  .hc-menu-explorer__count { margin-top:8px; }
  .hc-menu-explorer__selection-bridge { width:calc(100% - 20px); max-width:none; margin:0 auto -18px; padding:10px 12px; text-align:center; }
}
