/* ============================================================
   main_menu.css — Beyond J.C. Group OPC | Menu Landing Page
   Redesigned to match site design system:
   Fraunces/DM Sans · white canvas · green & yellow accents
   ============================================================ */

:root {
  --mm-green:        #0d542b;
  --mm-green-hover:  #0a4322;
  --mm-green-light:  #dcfce7;
  --mm-yellow:       #eab308;
  --mm-yellow-hover: #ca8a04;
  --mm-yellow-light: #fef9c3;
  --mm-yellow-bg:    #fffbeb;
  --mm-ink:          #111111;
  --mm-ink-mid:      #444444;
  --mm-ink-light:    #888888;
  --mm-white:        #ffffff;
  --mm-off-white:    #f8f8f8;
  --mm-border:       #efefef;
  --mm-border-dark:  #e2e2e2;
  --mm-font-display: sans-serif;
  --mm-font-body:    sans-serif;
  --mm-max-w:        1380px;
  --mm-px:           clamp(20px, 5vw, 80px);
  --mm-r-card:       16px;
  --mm-r-pill:       9999px;
  --mm-sh-card:      0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
  --mm-sh-hover:     0 8px 28px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.04);
  --mm-t-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --mm-t-fast:       .18s ease;
  --navbar-h:        80px;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .52s ease, transform .52s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── 1. PAGE HEADER ───────────────────────────────────────── */
.mm-page-header {
  background: var(--mm-white);
  padding: calc(var(--navbar-h) + 52px) var(--mm-px) 52px;
  border-bottom: 1px solid var(--mm-border);
}
.mm-page-header__inner {
  max-width: var(--mm-max-w);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-left: 5%;
  padding-right: 5%;
}

/* Eyebrow */
.mm-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mm-font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mm-green);
  margin-bottom: 14px;
}
.mm-eyebrow--green  { color: var(--mm-green); }
.mm-eyebrow--yellow { color: var(--mm-yellow-hover); }

.mm-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--mm-green);
  border-radius: 50%;
  animation: mmDotPulse 2.5s ease infinite;
}

/* Title */
.mm-page-header__title {
  font-family: var(--mm-font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--mm-ink);
  letter-spacing: -2.5px;
  margin-bottom: 16px;
}
.mm-page-header__title em {
  font-style: italic;
  color: var(--mm-green);
}

.mm-page-header__sub {
  font-family: var(--mm-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--mm-ink-light);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

/* Brand switcher tabs */
.mm-brand-switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mm-brand-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: var(--mm-r-pill);
  border: 1.5px solid var(--mm-border-dark);
  background: var(--mm-white);
  text-decoration: none;
  transition: all .22s var(--mm-t-spring);
}
.mm-brand-tab:hover { transform: translateY(-2px); }

.mm-brand-tab--green.active  { background: var(--mm-green-light); border-color: rgba(13,84,43,.2); }
.mm-brand-tab--yellow.active { background: var(--mm-yellow-light); border-color: rgba(234,179,8,.25); }

.mm-brand-tab__logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-brand-tab--green  .mm-brand-tab__logo { background: var(--mm-green); }
.mm-brand-tab--yellow .mm-brand-tab__logo { background: var(--mm-yellow); }

.mm-brand-tab__logo img { width: 100%; height: 100%; object-fit: cover; }
.mm-brand-tab__fb {
  font-family: var(--mm-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--mm-white);
}

.mm-brand-tab__name {
  display: block;
  font-family: var(--mm-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--mm-ink);
  line-height: 1.2;
}
.mm-brand-tab__desc {
  display: block;
  font-family: var(--mm-font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--mm-ink-light);
}

/* Stats */
.mm-page-header__stats {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  align-items: center;
}
.mm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.mm-stat:first-child { padding-left: 0; }
.mm-stat:last-child  { padding-right: 0; }
.mm-stat__num {
  font-family: var(--mm-font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--mm-green);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.mm-stat__label {
  font-family: var(--mm-font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--mm-ink-light);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.mm-stat__divider {
  width: 1px; height: 36px;
  background: var(--mm-border-dark);
  flex-shrink: 0;
}

/* ── 2. BRAND SECTIONS ────────────────────────────────────── */
.mm-brand-section {
  padding: 80px 0 88px;
}
.mm-brand-section--green  { background: var(--mm-white); }
.mm-brand-section--yellow { background: var(--mm-yellow-bg); }

.mm-brand-section__inner {
  max-width: var(--mm-max-w);
  margin-inline: auto;
  padding-inline: var(--mm-px);
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* Brand header row */
.mm-brand-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mm-brand-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mm-brand-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-brand-logo--green  { background: var(--mm-green); }
.mm-brand-logo--yellow { background: var(--mm-yellow); }

.mm-brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.mm-brand-logo__fb {
  font-family: var(--mm-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--mm-white);
}

.mm-brand-title {
  font-family: var(--mm-font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--mm-ink);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.mm-brand-tagline {
  font-family: var(--mm-font-display);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--mm-ink-light);
}

/* View all link */
.mm-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mm-font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: var(--mm-r-pill);
  border: 1.5px solid var(--mm-border-dark);
  transition: all .2s var(--mm-t-spring);
}
.mm-view-all:hover { transform: translateY(-1px); gap: 10px; }
.mm-view-all--green  { color: var(--mm-green); }
.mm-view-all--green:hover  { background: var(--mm-green-light); border-color: rgba(13,84,43,.2); }
.mm-view-all--yellow { color: var(--mm-yellow-hover); }
.mm-view-all--yellow:hover { background: var(--mm-yellow-light); border-color: rgba(234,179,8,.2); }

/* ── 3. CARDS GRID ────────────────────────────────────────── */
.mm-cards-grid { display: grid; gap: 20px; }
.mm-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mm-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── 4. PRODUCT CARD ──────────────────────────────────────── */
.mm-card {
  background: var(--mm-white);
  border-radius: var(--mm-r-card);
  border: 1px solid var(--mm-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mm-sh-card);
  transition: transform .28s var(--mm-t-spring), box-shadow .28s, border-color .2s;
}
.mm-card:hover { transform: translateY(-5px); box-shadow: var(--mm-sh-hover); }
.mm-card--green:hover  { border-color: rgba(13,84,43,.2); }
.mm-card--yellow:hover { border-color: rgba(234,179,8,.25); }

/* Image wrap — standard */
.mm-card__img-wrap {
  position: relative;
  height: 200px;
  background: var(--mm-off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--mm-border);
}
.mm-card__img {
  width: 155px; height: 155px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,.09);
  transition: transform .35s var(--mm-t-spring);
}
.mm-card:hover .mm-card__img { transform: scale(1.07); }

/* Round image wrap — for leh-muhn juice cards */
.mm-card__img-wrap--round { height: 220px; }
.mm-card__img--round {
  width: 170px; height: 170px;
}

/* Tag */
.mm-card__tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--mm-font-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: var(--mm-r-pill);
}
.mm-card__tag--green  { background: var(--mm-green); color: var(--mm-white); }
.mm-card__tag--yellow { background: var(--mm-yellow); color: var(--mm-ink); }

/* Body */
.mm-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mm-card__body--center { text-align: center; }

.mm-card__brand {
  font-family: var(--mm-font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.mm-card--green  .mm-card__brand { color: var(--mm-green); }
.mm-card--yellow .mm-card__brand { color: var(--mm-yellow-hover); }

.mm-card__name {
  font-family: var(--mm-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--mm-ink);
  letter-spacing: -.4px;
  line-height: 1.25;
  margin-bottom: 4px;
}
.mm-card__desc {
  font-family: var(--mm-font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--mm-ink-light);
  flex: 1;
  margin-bottom: 14px;
  line-height: 1.4;
}
.mm-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mm-card__footer--center { justify-content: center; gap: 16px; }

.mm-card__price {
  font-family: var(--mm-font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--mm-ink);
}

/* Order button */
.mm-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mm-font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--mm-r-pill);
  text-decoration: none;
  transition: background var(--mm-t-fast), transform .22s var(--mm-t-spring), box-shadow .22s;
}
.mm-order-btn:hover { transform: translateY(-2px); }
.mm-order-btn--green {
  background: var(--mm-green);
  color: var(--mm-white);
}
.mm-order-btn--green:hover {
  background: var(--mm-green-hover);
  box-shadow: 0 6px 16px rgba(13,84,43,.25);
}
.mm-order-btn--yellow {
  background: var(--mm-yellow);
  color: var(--mm-ink);
}
.mm-order-btn--yellow:hover {
  background: var(--mm-yellow-hover);
  color: var(--mm-white);
}

/* ── 5. SPLIT ROW ─────────────────────────────────────────── */
.mm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mm-split--flip .mm-split__text { order: 1; }
.mm-split--flip .mm-split__img  { order: 2; }

.mm-split__photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0,0,0,.10);
  display: block;
}

.mm-split__title {
  font-family: var(--mm-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--mm-ink);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.mm-split__title em { font-style: italic; color: var(--mm-green); }

.mm-split__body {
  font-family: var(--mm-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--mm-ink-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Checklist */
.mm-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.mm-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mm-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--mm-ink-mid);
}
.mm-checklist svg { flex-shrink: 0; color: var(--mm-green); }

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.mm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--mm-r-pill);
  font-family: var(--mm-font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s var(--mm-t-spring), box-shadow .22s, background .18s;
}
.mm-btn:hover { transform: translateY(-2px); }
.mm-btn--green {
  background: var(--mm-green);
  color: var(--mm-white);
  box-shadow: 0 4px 16px rgba(13,84,43,.2);
}
.mm-btn--green:hover {
  background: var(--mm-green-hover);
  box-shadow: 0 8px 24px rgba(13,84,43,.28);
}
.mm-btn--yellow {
  background: var(--mm-yellow);
  color: var(--mm-ink);
  box-shadow: 0 4px 16px rgba(234,179,8,.2);
}
.mm-btn--yellow:hover {
  background: var(--mm-yellow-hover);
  color: var(--mm-white);
  box-shadow: 0 8px 24px rgba(234,179,8,.28);
}

/* ── 7. FEATURED SECTION ──────────────────────────────────── */
.mm-featured {
  background: var(--mm-off-white);
  padding: 80px var(--mm-px);
  border-top: 1px solid var(--mm-border);
  border-bottom: 1px solid var(--mm-border);
}
.mm-featured__inner {
  max-width: var(--mm-max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mm-featured__title {
  font-family: var(--mm-font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  color: var(--mm-ink);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.mm-featured__title em { font-style: italic; color: var(--mm-yellow-hover); }

.mm-featured__desc {
  font-family: var(--mm-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--mm-ink-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.mm-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mm-featured__price {
  font-family: var(--mm-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--mm-ink);
  letter-spacing: -1px;
}

/* Visual side */
.mm-featured__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.mm-featured__blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(234,179,8,.15) 0%, rgba(13,84,43,.1) 100%);
  animation: mmBlobMorph 8s ease-in-out infinite;
}

.mm-featured__img {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(0,0,0,.12);
  transition: transform .4s ease;
}
.mm-featured__visual:hover .mm-featured__img { transform: scale(1.02) translateY(-4px); }

/* ── 8. CTA BAND ──────────────────────────────────────────── */
.mm-cta {
  background: var(--mm-green);
  padding: 88px var(--mm-px);
  text-align: center;
}
.mm-cta__inner { max-width: 580px; margin-inline: auto; }

.mm-cta__title {
  font-family: var(--mm-font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--mm-white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.mm-cta__sub {
  font-family: var(--mm-font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 36px;
}
.mm-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mm-yellow);
  color: var(--mm-ink);
  font-family: var(--mm-font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--mm-r-pill);
  text-decoration: none;
  transition: transform .22s var(--mm-t-spring), box-shadow .22s, background .18s;
}
.mm-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(234,179,8,.35);
  background: var(--mm-yellow-hover);
  color: var(--mm-white);
}

/* ── 9. ANIMATIONS ────────────────────────────────────────── */
@keyframes mmDotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.6); opacity: .5; }
}
@keyframes mmBlobMorph {
  0%,100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50%     { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* ── 10. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .mm-cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .mm-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mm-page-header__inner { flex-direction: column; align-items: flex-start; }
  .mm-page-header__stats { flex-direction: row; }
}
@media (max-width: 860px) {
  .mm-split,
  .mm-split--flip,
  .mm-featured__inner { grid-template-columns: 1fr; gap: 36px; }
  .mm-split--flip .mm-split__text,
  .mm-split--flip .mm-split__img { order: unset; }
  .mm-split__photo { height: 300px; }
  .mm-featured__visual { height: 320px; }
  .mm-featured__img { width: 240px; height: 280px; }
  .mm-featured__blob { width: 280px; height: 280px; }
}
@media (max-width: 540px) {
  .mm-cards-grid--3,
  .mm-cards-grid--4 { grid-template-columns: 1fr; }
  .mm-brand-switcher { flex-direction: column; }
  .mm-page-header__stats { gap: 16px; }
  .mm-stat { padding: 0 16px; }
  .mm-featured__meta { flex-direction: column; align-items: flex-start; }
}