/* Yerel yemek görselleri; ana tasarımdan bağımsız görsel katmanı. */
.menu .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.menu .dish {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(34, 20, 12, .06);
}
.dish-photo { overflow: hidden; aspect-ratio: 3 / 2; background: #2b1c14; }
.dish-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dish:hover .dish-photo img { transform: scale(1.045); }
.dish-body { padding: 22px; display: flex; flex: 1; flex-direction: column; align-items: flex-start; gap: 14px; }
.dish-body .dish-top { width: 100%; margin-bottom: 0; }
.dish-body .dish-top h4 { font-size: 1.1rem; }
.dish-body .dish-top h4 a:hover { color: var(--red); }
.dish-body .tag { margin: 0; }
.dish-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 11px 15px;
  border-radius: 10px;
  background: #a61c1c;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
}
.dish-order:hover { background: #7c1515; }
.dish-order:focus-visible { outline: 3px solid #c9a227; outline-offset: 3px; }
.menu .memo-menu-photo { display: none; }
.menu-visual-note { text-align: center; color: var(--muted); font-size: .78rem; margin: -24px 0 36px; }
@media (max-width: 1000px) {
  .menu .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}
@media (max-width: 600px) {
  .menu .menu-grid { grid-template-columns: minmax(0, 1fr); }
  .dish-body { padding: 20px; }
  .menu .menu-block-head { flex-wrap: wrap; gap: 10px; }
  .menu .menu-block-note { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  .dish-photo img { transition: none; }
  .dish:hover .dish-photo img { transform: none; }
}
.about-visual > .memo-about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-visual::before { display: none; }
.memo-about-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(20, 17, 16, .8);
  color: #fff8f0;
  font-size: .7rem;
}
.hero { position: relative; isolation: isolate; overflow: hidden; background: #201712; }
.hero > .memo-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 16, .94), rgba(20, 17, 16, .76) 48%, rgba(20, 17, 16, .38));
  z-index: -1;
  pointer-events: none;
}
.hero .hero-copy h1, .hero .hero-text { color: #fff8f0; }
.memo-menu-photo { max-width: 960px; margin: 0 auto 36px; }
.memo-menu-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
}
.memo-menu-photo figcaption {
  margin-top: 10px;
  font-size: .78rem;
  text-align: center;
  color: inherit;
  opacity: .75;
}
@media (max-width: 760px) {
  .hero::after { background: rgba(20, 17, 16, .8); }
  .hero > .memo-hero-image { object-position: 58% center; }
  .memo-menu-photo { margin-bottom: 24px; }
  .memo-menu-photo img { border-radius: 14px; }
}
