/* Duo Grill — the app's own Ember palette, so the site and the app agree. */
:root {
  --coal: #0c0b0c;
  --coal-raised: #161415;
  --flame: #fa731a;
  --hot: #ffd14d;
  --deep: #d12e0d;
  --text: #f2f2f2;
  --dim: #a09a96;
  --line: rgba(255, 255, 255, 0.09);
  --font: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--coal);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* The glow sits behind everything and never scrolls into a hard edge. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60vw 40vh at 50% 78%, rgba(250, 115, 26, 0.3), transparent 70%),
    radial-gradient(40vw 26vh at 50% 88%, rgba(255, 209, 77, 0.18), transparent 70%);
}

.wrap { position: relative; max-width: 960px; margin: 0 auto; padding: 0 24px; }

header { padding: 40px 0 8px; display: flex; align-items: center; gap: 14px; }
header img { width: 44px; height: 44px; border-radius: 10px; }
header a { color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: -0.01em; }
header nav { margin-left: auto; display: flex; gap: 18px; }
header nav a { color: var(--dim); font-weight: 600; font-size: 15px; }
header nav a:hover { color: var(--hot); }

.hero { padding: 56px 0 24px; text-align: center; }
.hero h1 {
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.hero p { font-size: clamp(17px, 2.4vw, 21px); color: var(--dim); max-width: 34ch; margin: 0 auto; }

.badge {
  display: inline-block;
  margin-top: 26px;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--hot), var(--flame));
  color: #1a0c02;
  font-weight: 800;
  text-decoration: none;
}
.badge.pending { background: none; border: 1px solid var(--line); color: var(--dim); font-weight: 600; }

.shots { display: flex; gap: 18px; overflow-x: auto; padding: 44px 0 8px; scroll-snap-type: x mandatory; }
.shots img {
  width: min(260px, 62vw);
  flex: 0 0 auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  scroll-snap-align: center;
}

h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: -0.02em;
  margin: 56px 0 6px;
}
.eyebrow { color: var(--hot); font-size: 13px; font-weight: 800; letter-spacing: 0.2em; }

.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 26px; }
.card { background: var(--coal-raised); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--dim); font-size: 15px; }

article { max-width: 68ch; }
article h2 { margin-top: 40px; }
article p, article li { color: var(--dim); }
article strong { color: var(--text); }
article a { color: var(--hot); }
ul { padding-left: 20px; }
li { margin: 6px 0; }

footer {
  margin-top: 80px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer a { color: var(--dim); }
footer .spacer { margin-left: auto; }

@media (prefers-reduced-motion: no-preference) {
  .shots { scroll-behavior: smooth; }
}
