/* ============================================================
   THE GRIDDLE MENU
   "Featured Favorites" reimagined as a printed diner menu card.
   Aged-paper texture · double-rule frame · dotted leader lines.
   ============================================================ */

/* ---- The "tabletop": deep teal field the menu lies on -------- */
.gmenu {
  position: relative;
  background: var(--pd-teal-dark);
  padding: var(--sp-section) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
/* faint atomic dot grid on the dark field */
.gmenu::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 243, 222, .055) 1.4px, transparent 1.6px);
  background-size: 28px 28px;
  pointer-events: none;
}
.gmenu__field-star {
  position: absolute;
  z-index: 0;
  opacity: .5;
}

/* ---- The paper sheet ----------------------------------------- */
.gmenu__sheet {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) clamp(24px, 6vw, 66px) clamp(34px, 5vw, 56px);
  border-radius: 5px;
  background-color: var(--pd-cream);
  /* warm aged paper: subtle tonal mottling baked in with layered radials */
  background-image:
    radial-gradient(120% 80% at 8% 0%, rgba(255, 255, 255, .55), transparent 42%),
    radial-gradient(120% 90% at 100% 100%, rgba(201, 150, 42, .10), transparent 46%);
  box-shadow:
    var(--pd-shadow),
    inset 0 0 70px rgba(44, 44, 44, .07);
}
/* fibrous paper grain */
.gmenu__sheet::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* double-rule decorative frame (teal rule + thin inner keyline) */
.gmenu__sheet::after {
  content: "";
  position: absolute; inset: 13px;
  border-radius: 2px;
  pointer-events: none;
  border: 2.5px solid var(--pd-teal);
  box-shadow:
    inset 0 0 0 3px var(--pd-cream),
    inset 0 0 0 4.5px rgba(23, 56, 59, .28);
}

/* corner starbursts pinned to the frame */
.gmenu__corner {
  position: absolute;
  z-index: 3;
}
.gmenu__corner--tl { top: 22px; left: 24px; }
.gmenu__corner--tr { top: 22px; right: 24px; }
.gmenu__corner--bl { bottom: 22px; left: 24px; }
.gmenu__corner--br { bottom: 22px; right: 24px; }

/* ---- Header plaque ------------------------------------------- */
.gmenu__head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: clamp(22px, 3.4vw, 34px);
}
.gmenu__eyebrow {
  font-family: var(--font-script);
  color: var(--pd-red);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1;
}
.gmenu__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--pd-teal-dark);
  font-size: clamp(2.3rem, 5.4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.012em;
  margin: .12em 0 .3em;
}
.gmenu__kicker {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: clamp(.62rem, 1.2vw, .74rem);
  color: var(--pd-ink-60);
}
/* line — diamond — line ornament */
.gmenu__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 300px;
  margin: 16px auto 0;
}
.gmenu__rule::before,
.gmenu__rule::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(23, 56, 59, .35);
}
.gmenu__rule span {
  color: var(--pd-gold);
  font-size: 1rem;
  line-height: 1;
}

/* ---- Menu list ----------------------------------------------- */
.gmenu__list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
}
.mrow {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.6vw, 28px);
}
/* round "porthole" photo with cream + teal ring */
.mrow__media {
  position: relative;
  flex: none;
  width: clamp(66px, 9.5vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--pd-teal-soft);
  box-shadow:
    0 0 0 4px var(--pd-cream),
    0 0 0 6.5px var(--pd-teal),
    var(--pd-shadow-sm);
}
.mrow__media image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.mrow__main {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
.mrow__line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mrow__nm {
  flex: none;
  max-width: 72%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--pd-teal-dark);
  font-size: clamp(1.25rem, 2.5vw, 1.72rem);
  line-height: 1.04;
  text-wrap: balance;
}
.mrow__tag {
  flex: none;
  align-self: center;
  font-family: var(--font-label);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .56rem;
  color: #fff;
  background: var(--pd-red);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.mrow:nth-child(2) .mrow__tag { background: var(--pd-teal-dark); }
.mrow:nth-child(3) .mrow__tag { background: var(--pd-gold); }
.mrow__dots {
  flex: 1 1 auto;
  align-self: flex-end;
  min-width: 22px;
  transform: translateY(-7px);
  border-bottom: 3px dotted rgba(23, 56, 59, .42);
}
.mrow__price {
  flex: none;
  font-family: var(--font-label);
  font-weight: 900;
  color: var(--pd-red);
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1;
  white-space: nowrap;
}
.mrow__desc {
  margin: 7px 0 0;
  max-width: 62ch;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--pd-ink-60);
  font-size: clamp(.92rem, 1.4vw, 1.02rem);
  line-height: 1.5;
}

/* ---- Footer of the sheet ------------------------------------- */
.gmenu__foot {
  position: relative;
  z-index: 2;
  margin-top: clamp(26px, 4vw, 40px);
  text-align: center;
}
.gmenu__divider {
  height: 11px;
  max-width: 360px;
  margin: 0 auto clamp(16px, 2.4vw, 22px);
  background-image:
    linear-gradient(45deg, var(--pd-teal) 25%, transparent 25%, transparent 75%, var(--pd-teal) 75%),
    linear-gradient(45deg, var(--pd-teal) 25%, transparent 25%, transparent 75%, var(--pd-teal) 75%);
  background-size: 11px 11px;
  background-position: 0 0, 5.5px 5.5px;
  opacity: .5;
}
.gmenu__note {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--pd-ink-60);
  font-size: clamp(.9rem, 1.4vw, 1rem);
  margin: 0 0 clamp(18px, 2.6vw, 26px);
}

/* ---- Responsive ---------------------------------------------- */
@media (max-width: 600px) {
  .gmenu__sheet::after { inset: 9px; }
  .gmenu__corner { display: none; }
  .mrow__media { width: 58px; }
  .mrow__dots { display: none; }
  .mrow__nm { flex: 1 1 auto; max-width: none; }
  .mrow__tag { order: 3; }
  .mrow__price { margin-left: auto; }
}
