/* Home screen */
.view-start { padding-bottom: 24px; }
.start-hero { text-align: center; padding: 12px 8px 8px; }
.start-hero img { width: min(150px, 40vw); height: auto; border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(238, 48, 91, 0.25); }
.start-hero .tagline { margin: 12px 0 4px; font-size: 22px; font-weight: 800; color: var(--pink); }
.start-hero .sub { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.home-h2 { font-size: 16px; margin: 18px 4px 8px; }
.dinner-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 8px 0; }
.dinner-tile {
  border: 1px solid var(--border); background: #fff; border-radius: 16px; padding: 0; overflow: hidden;
  text-align: left; font: inherit; color: inherit; cursor: pointer; display: flex; flex-direction: column;
  min-height: 170px;
}
.dinner-tile .tile-photo { width: 100%; aspect-ratio: 4 / 3; height: auto; }
.dinner-tile .tile-body { display: flex; flex-direction: column; gap: 4px; padding: 10px 12px 12px; }
.dinner-tile .tile-name { font-weight: 800; font-size: 15px; line-height: 1.25; }
.dinner-tile .tile-price { font-weight: 800; color: var(--pink); font-size: 14px; }
.dinner-tile .tile-kicker { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: #8a6d00; }
.cotd-tile { border: 2px solid var(--yellow); box-shadow: 0 4px 14px rgba(255, 220, 26, 0.35); }
.section-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 8px 0 4px; }
.section-tile {
  display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 8px; align-items: center;
  min-height: 60px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: #fff;
  text-align: left; font: inherit; color: inherit; cursor: pointer;
}
.section-tile .st-emoji { grid-row: 1 / span 2; font-size: 24px; text-align: center; }
.section-tile .st-label { font-weight: 800; font-size: 14px; line-height: 1.2; }
.section-tile .st-count { font-size: 11px; color: var(--muted); }
.app-version { text-align: center; color: var(--muted); font-size: 11px; margin: 14px 0 0; }
