/* Unique kitchen layouts — not a repeated product grid */

/* PIZZA WALL — irregular mosaic */
.pizza-wall {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-auto-rows: 170px;
  gap: 14px;
}
.pizza-wall .cell { position: relative; overflow: hidden; border-radius: 22px; background: #111; }
.pizza-wall img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s transform; }
.pizza-wall .cell:hover img { transform: scale(1.06); }
.pizza-wall .cell .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(26,20,18,0.88), transparent); color: #fff;
}
.pizza-wall .cell .cap h3 { font-family: var(--font-display); font-size: 30px; }
.pw-lg { grid-row: span 3; }
.pw-md { grid-row: span 2; }
.pw-sm { grid-row: span 1; }
.pw-wide { grid-column: span 2; grid-row: span 2; }
.pw-circle {
  border-radius: 50% !important; grid-row: span 2;
  justify-self: center; width: 100%; max-width: 280px;
}
.pw-circle .cap { text-align: center; }

/* PASTA STREET — overlapping bowls + sauce labels */
.pasta-street {
  display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; gap: 0;
  align-items: center; padding: 10px 0 40px;
}
.pasta-col { display: flex; flex-direction: column; gap: 22px; }
.bowl {
  background: #fff; border-radius: 50% 50% 28px 28px; overflow: hidden;
  box-shadow: var(--shadow); position: relative; transform: rotate(-2deg);
}
.bowl:nth-child(even) { transform: rotate(3deg) translateY(18px); }
.bowl img { height: 280px; width: 100%; object-fit: cover; }
.bowl .info { padding: 14px 16px 18px; text-align: center; }
.sauce {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--charcoal); font-weight: 800;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
}
.pasta-banner {
  background: var(--burgundy); color: #fff; padding: 40px 28px; border-radius: 32px; text-align: center;
}
.pasta-banner h2 { font-size: 64px; }

/* CHEESE CORNER — close-up melt magazine */
.cheese-hero {
  display: grid; grid-template-columns: 0.9fr 1.2fr 0.8fr; gap: 12px; min-height: 520px;
}
.cheese-hero figure { margin: 0; overflow: hidden; border-radius: 28px; position: relative; }
.cheese-hero img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.cheese-hero .mid img { min-height: 520px; }
.drip {
  position: absolute; bottom: 18px; left: 18px; right: 18px; color: #fff;
  font-family: var(--font-display); font-size: 42px;
  text-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.cheese-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 18px;
}
.cheese-grid .food-tile img { height: 170px; }

/* BURGER BLOCK — urban street */
.burger-block {
  background: var(--charcoal); color: #fff; padding: 48px 0 64px; margin: 20px 0;
}
.burger-layout {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px;
}
.burger-giant { position: relative; border-radius: 30px; overflow: hidden; min-height: 540px; }
.burger-giant img { width: 100%; height: 100%; object-fit: cover; min-height: 540px; }
.neon {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-display); font-size: 80px; color: var(--red-hot);
  text-shadow: 0 0 18px rgba(230,57,43,0.7);
}
.burger-stack { display: flex; flex-direction: column; gap: 12px; }
.burger-mini {
  display: grid; grid-template-columns: 110px 1fr; background: #2a211c; border-radius: 18px; overflow: hidden;
}
.burger-mini img { height: 110px; object-fit: cover; }

/* SIDE STREET horizontal */
.side-street { background: var(--cream-deep); padding: 48px 0; border-radius: 32px; }

/* CHICKEN CLUB */
.chicken-club {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px;
}
.chicken-club .c1 { grid-column: span 7; }
.chicken-club .c2 { grid-column: span 5; }
.chicken-club .c3 { grid-column: span 4; }
.chicken-club .c4 { grid-column: span 4; }
.chicken-club .c5 { grid-column: span 4; }
.chicken-club article { position: relative; overflow: hidden; border-radius: 22px; min-height: 220px; }
.chicken-club img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.chicken-club .c1 { min-height: 420px; }
.chicken-club figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* WRAP IT UP — folded diagonal panels */
.wrap-stage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.wrap-card {
  min-height: 360px; position: relative; overflow: hidden; color: #fff;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.wrap-card:nth-child(even) { clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%); margin-left: -12px; }
.wrap-card img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.wrap-card .txt { position: absolute; bottom: 18px; left: 24px; right: 20px; }

/* dessert runway */
.sweet-runway {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px;
}
.sweet-runway .big { grid-row: span 2; position: relative; overflow: hidden; border-radius: 24px; }
.sweet-runway img { width: 100%; height: 100%; object-fit: cover; }
.sweet-runway .small { overflow: hidden; border-radius: 24px; position: relative; }

/* drinks bar */
.drink-bar {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.glass {
  width: 160px; text-align: center;
}
.glass img { height: 210px; width: 160px; object-fit: cover; border-radius: 80px 80px 24px 24px; box-shadow: var(--shadow); }

/* product detail — restaurant plate, not shop PDP */
.plate {
  display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 70vh;
}
.plate-photo { background: #1a1412; }
.plate-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 70vh; }
.plate-copy { padding: 48px 40px; background: var(--white); }

/* kitchen page */
.kitchen-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.kitchen-grid img { height: 240px; object-fit: cover; width: 100%; border-radius: 18px; }
.kitchen-grid img:first-child { grid-column: span 2; height: 360px; }

.menu-note {
  font-family: var(--font-serif); font-style: italic; text-align: center; color: var(--muted); margin: 8px 0 28px;
}
