/* =============================================
   MENU PAGE — Accordion drawer style (light)
   ============================================= */

.menu-page {
  background: var(--hh-white);
  color: var(--hh-black);
}

/* =============================================
   ACCORDION
   ============================================= */
.accordion {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--hh-black);
  transition: background 0.2s;
}
.accordion__trigger:hover {
  background: var(--hh-off-white);
}
.accordion__trigger:focus-visible {
  outline: 3px solid var(--hh-red);
  outline-offset: -3px;
}

.accordion__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 8vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--hh-black);
}
.accordion__title--red {
  color: var(--hh-red);
}

.accordion__chevron {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  color: var(--hh-black);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Chevron rotates when open */
.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
  border-color: var(--hh-red);
  background: var(--hh-red);
  color: #fff;
}

/* --- Panel --- */
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__panel.open {
  max-height: 2000px;
}

.accordion__content {
  padding: 0 24px 48px;
  max-width: 720px;
}

/* --- Typography inside accordion --- */
.accordion__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--hh-gray);
  margin-bottom: 8px;
  font-style: italic;
}
.accordion__intro {
  font-size: 15px;
  color: var(--hh-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

/* --- Groups --- */
.accordion__group {
  margin-bottom: 32px;
}
.accordion__group:last-child { margin-bottom: 0; }

.accordion__group-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hh-gray);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.accordion__group-heading span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* --- Pills --- */
.accordion__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.accordion__pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--hh-off-white);
  font-size: 14px;
  font-weight: 500;
  color: var(--hh-black);
  border: 1px solid rgba(0,0,0,0.06);
  transition: background 0.15s, border-color 0.15s;
}
.accordion__pill:hover {
  background: var(--hh-off-white-hover);
  border-color: rgba(0,0,0,0.12);
}

/* --- Protein List --- */
.accordion__protein-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.accordion__protein {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--hh-off-white);
  transition: background 0.15s;
}
.accordion__protein:hover { background: var(--hh-off-white-hover); }
.accordion__protein strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--hh-black);
}
.accordion__protein span {
  font-size: 13px;
  color: var(--hh-gray);
}

/* --- Callout --- */
.accordion__callout {
  margin-top: 16px;
  font-size: 13px;
  color: var(--hh-gray);
  font-style: italic;
  padding: 10px 14px;
  border-left: 3px solid var(--hh-red);
  background: var(--hh-off-white);
  border-radius: 4px;
}

/* --- Simple Item List --- */
.accordion__item-list {
  display: flex;
  flex-direction: column;
}
.accordion__item {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  transition: background 0.15s;
}
.accordion__item:last-child { border-bottom: none; }
.accordion__item:hover { background: var(--hh-off-white); }
.accordion__item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--hh-black);
  display: block;
}
.accordion__item span {
  font-size: 13px;
  color: var(--hh-gray);
  display: block;
  margin-top: 3px;
}
.accordion__item-list--compact .accordion__item { padding: 10px 18px; }

.accordion__inline-text {
  font-size: 14px;
  color: var(--hh-gray);
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 0 18px;
}

/* --- Allergen --- */
.menu-allergen {
  max-width: 720px;
  padding: 24px 24px 0;
  font-size: 12px;
  color: var(--hh-gray);
  line-height: 1.6;
}

/* --- Menu Order CTA --- */
.menu-order {
  padding: 56px 24px 72px;
  text-align: center;
}
.menu-order__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 7vw, 48px);
  text-transform: uppercase;
  color: var(--hh-black);
  margin-bottom: 20px;
}

/* --- Desktop --- */
@media (min-width: 769px) {
  .accordion__trigger { padding: 48px 48px; }
  .accordion__content { padding: 0 48px 56px; max-width: 800px; }
  .accordion__title { font-size: clamp(44px, 6vw, 72px); }
  .menu-allergen { padding-left: 48px; }
}

/* --- Print --- */
@media print {
  .menu-header { display: none; }
  .accordion__panel { max-height: none !important; }
}
