/* -------------------------
   MENU PAGE
------------------------- */
/* section spacing */
.menu-intro,
.menu-story,
.menu-highlight,
.menu-category,
.menu-cta {
  padding: 80px 0;
}


.menu-intro {
  background: #553e27;
  color: #fff;
  text-align: center;
}

.menu-intro__container {
  max-width: 860px;
  margin: 0 auto;
}

.menu-intro__eyebrow,
.menu-category__eyebrow {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7b897;
}

.menu-intro__title,
.menu-category__title,
.menu-cta__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.menu-intro__text,
.menu-category__text,
.menu-card__text,
.menu-card__meta p,
.menu-cta__text {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.menu-intro__text {
  color: #f3e8db;
}

.menu-intro__text a,
.menu-cta__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-category__text a {
  color: #8d5c2c;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.menu-category__text a:hover {
  color: #6f4772;
}


.menu-story {
  background: #fffaf4;
  position: relative;
}

.menu-story::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background: rgba(141, 92, 44, 0.05);
  z-index: 0;
}

.menu-story__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.menu-story__image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.menu-story__content h2 {
  margin: 0 0 16px;
  font-size: 2.4rem;
}

.menu-story__content p {
  margin-bottom: 16px;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.7;
  color: #5f4a3a;
}

.menu-highlight {
  background: #fffaf4;
}

.menu-highlight__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.menu-highlight__card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}

.menu-highlight__card h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.menu-highlight__card p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.75;
  color: #5f4a3a;
}

.menu-category--alt {
  background: #efe7da;
}

.menu-category--featured {
  background: #fff7ef;
}

.menu-category--featured .menu-card {
  transform: scale(1.02);
}

.menu-category--featured .menu-card:hover {
  transform: scale(1.04);
}

.menu-category__header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.menu-category__title {
  margin-bottom: 16px;
}

.menu-category__text {
  color: #5f4a3a;
  margin: 0 auto;
}

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

.menu-grid--tight {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(53, 37, 22, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #efe7da;
  border-radius: 16px;
  margin-bottom: 18px;
}

.menu-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
  height: 100%;
}

.menu-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.menu-card__top h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.menu-card__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #8d5c2c;
  white-space: normal;
  line-height: 1.5;
  display: none;
}

.menu-card__text {
  color: #5f4a3a;
  margin-bottom: 0;
}

.menu-card__note {
  margin: 4px 0 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.92rem;
  color: #7a6654;
  line-height: 1.6;
}

.menu-card__meta {
  display: grid;
  gap: 8px;
}

.menu-card__meta p {
  color: #5f4a3a;
}

.menu-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.menu-card__actions .menu-btn {
  width: 100%;
  text-align: center;
}

.menu-card--clickable {
  cursor: pointer;
}

.menu-card--clickable:focus-visible {
  outline: 2px solid rgba(141, 92, 44, 0.35);
  outline-offset: 4px;
}

/* -------------------------
   MENU MODAL
------------------------- */

.menu-modal[hidden] {
  display: none;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 24, 15, 0.55);
}

.menu-modal__dialog {
  position: relative;
  width: min(620px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: #fffaf4;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.menu-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #efe7da;
  color: #553e27;
  cursor: pointer;
  z-index: 2;
}

.menu-modal__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin-bottom: 18px;
}

.menu-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7b897;
}

.menu-modal__title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.12;
}

.menu-modal__price {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8d5c2c;
}

.menu-modal__text {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5f4a3a;
}

.menu-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.menu-card--clickable {
  cursor: pointer;
}

.menu-card--clickable:focus-visible {
  outline: 3px solid rgba(141, 92, 44, 0.35);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .menu-modal__dialog {
    margin-top: 6vh;
    padding: 20px;
  }

  .menu-modal__image {
    height: 220px;
  }

  .menu-modal__actions {
    flex-direction: column;
  }
}
/* -------------------------
   MENU GALLERY CAROUSEL
------------------------- */

.menu-gallery {
  padding: 90px 0;
  background: #fffaf4;
  overflow: hidden;
}

.menu-gallery__header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.menu-gallery__eyebrow {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7b897;
}

.menu-gallery__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.menu-gallery__text {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5f4a3a;
}

.menu-carousel {
  position: relative;
}

.menu-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.menu-carousel__track {
  display: flex;
  align-items: center;
  transition: transform 0.45s ease;
  will-change: transform;
}

.menu-carousel__slide {
  flex: 0 0 52%;
  flex-shrink: 0;
  padding: 0 12px;
  margin: 0;
  opacity: 0.5;
  transform: scale(0.92);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.menu-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* fallback if JS fails */
.menu-carousel__slide:first-child {
  opacity: 1;
  transform: scale(1);
}

.menu-carousel__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(53, 37, 22, 0.1);
}

.menu-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.menu-carousel__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: #d7b897;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.menu-carousel__dot.is-active {
  background: #8d5c2c;
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .menu-gallery {
    padding: 64px 0;
  }

  .menu-carousel__slide {
    flex: 0 0 72%;
    padding: 0 8px;
  }

  .menu-carousel__slide img {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .menu-carousel__slide {
    flex: 0 0 84%;
  }

  .menu-carousel__slide img {
    height: 280px;
  }
}

.menu-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-btn--primary {
  background: #7b5d3f;
  color: #fff;
}

.menu-btn--primary:hover {
  background: #946f49;
}

.menu-btn--secondary {
  background: #e7a57a;
  color: #553e27;
  border: 1px solid #d9966d;
}

.menu-btn--secondary:hover {
  background: #d9966d;
  color: #fff;
  border-color: #d9966d;
}

.menu-cta {
  background: #553e27;
  text-align: center;
  color: #fff;
}

.menu-cta__text {
  max-width: 760px;
  margin: 0 auto;
  color: #f3e8db;
}

.menu-btn--coming-soon {
  background: #e9dfd2;
  color: #6b5848;
  border: 1px solid #d8c8b7;
  cursor: default;
  pointer-events: none;
}

.menu-btn--coming-soon:hover {
  background: #e9dfd2;
  color: #6b5848;
  border-color: #d8c8b7;
}

.menu-card__price {
  font-size: .98rem;
}

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

@media (max-width: 900px) {
  .menu-intro,
  .menu-story,
  .menu-highlight,
  .menu-category,
  .menu-cta {
    padding: 64px 0;
 }

 .menu-story__container {
    grid-template-columns: 1fr;
  gap: 28px;
  }

  .menu-story__image img {
    min-height: 300px;
  }

  .menu-story::after {
    width: 100%;
    height: 450px;
    top: auto;
    bottom: 0;
  }
}

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

  .menu-card__top {
    flex-direction: column;
    gap: 6px;
  }

  .menu-card__top h3 {
    font-size: 1.4rem;
  }

  .menu-btn {
    width: 100%;
    text-align: center;
  }

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