/* MosaicedMeal Coming Soon Styles */
:root {
  --green: #1F6F54;
  --terra: #C86B43;
  --mustard: #D5A009;
  --cream: #FAF7F2;
  --charcoal: #2F2F2F;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 20% 10%, #ffffff 0%, var(--cream) 60%, #f3efe9 100%);
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  display: grid;
  place-items: center;
  padding: 24px;
}
.card {
  width: min(860px, 92vw);
  background: #fffefc;
  border: 2px solid #ece6dc;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(31, 111, 84, 0.12);
  overflow: hidden;
}
.header {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px; border-bottom: 1px solid #efe8de;
  background: linear-gradient(180deg, #fff, #fffaf2);
}
.header img { width: 44px; height: 44px; }
.title h1 { margin: 0; font-weight: 800; letter-spacing: -0.01em; color: var(--green); }
.title p { margin: 2px 0 0; color: #5b5b5b; }
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; padding: 28px;
}
.hero .copy h2 { margin-top: 0; font-size: clamp(26px, 3vw, 34px); line-height: 1.2; }
.hero .copy p { font-size: 17px; color: #555; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 24px; }
.badge { background: #f8f4ec; color: #2b2b2b; border: 1px solid #eee3d2; padding: 8px 12px; border-radius: 999px; font-size: 13px; }
.cta { display: flex; gap: 10px; flex-wrap: wrap; }
.button {
  appearance: none; border: 0; background: var(--green); color: white;
  padding: 12px 18px; border-radius: 12px; font-weight: 700; cursor: pointer;
  transition: transform .04s ease, box-shadow .2s ease; box-shadow: 0 8px 30px rgba(31,111,84,.25);
}
.button:hover { transform: translateY(-1px); }
.button.secondary { background: #fff; color: var(--green); border: 2px solid var(--green); box-shadow: none; }
.tile {
  background: var(--cream); border: 2px solid #e9e0d2; border-radius: 16px;
  display: grid; place-items: center; padding: 18px;
}
.tile img { width: 220px; height: auto; }
.footer {
  border-top: 1px solid #efe8de; padding: 14px 22px; display: flex; justify-content: space-between; align-items: center; color: #6b6b6b; font-size: 13px;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .tile img { width: 160px; }
}
