/* Ember — Hearth palette, shared by every page on ember.tepoyan.com */
:root {
  --coal-0: #3a2418;
  --coal-1: #241812;
  --coal-2: #16100b;
  --coal-3: #0f0b07;
  --ember: #ff8a4d;
  --amber: #ffc978;
  --ink-on-ember: #24120a;
  --text: #fff0e0;
  --text-72: rgba(255, 240, 224, 0.72);
  --text-55: rgba(255, 240, 224, 0.55);
  --stroke: rgba(255, 240, 224, 0.10);
  --card: rgba(30, 18, 10, 0.52);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: linear-gradient(var(--coal-0), var(--coal-1) 34%, var(--coal-2) 72%, var(--coal-3));
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }

header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 56px; }
header.site img { width: 44px; height: 44px; border-radius: 10px; }
header.site .name { font-weight: 700; font-size: 18px; letter-spacing: 0.01em; }
header.site nav { margin-left: auto; display: flex; gap: 20px; }
header.site nav a { color: var(--text-55); text-decoration: none; font-size: 14px; }
header.site nav a:hover { color: var(--amber); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px;
  font-weight: 600; color: var(--text-55); margin-bottom: 14px;
}

h1 { font-size: clamp(34px, 6vw, 52px); line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 18px; }
h1 .accent { color: var(--amber); }
h2 { font-size: 22px; margin: 40px 0 10px; }
.sub { color: var(--text-72); font-size: 18px; max-width: 54ch; }

.flame {
  width: 84px; height: 118px; margin: 0 0 28px; position: relative;
  filter: drop-shadow(0 10px 40px rgba(255, 138, 77, 0.45));
}
.flame span {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  border-radius: 50% 50% 46% 46% / 68% 68% 36% 36%;
  animation: flicker 1.7s ease-in-out infinite alternate;
}
.flame .outer { width: 84px; height: 118px; background: linear-gradient(#e85a2e, var(--ember)); filter: blur(7px); }
.flame .mid { width: 58px; height: 82px; background: linear-gradient(var(--ember), var(--amber)); filter: blur(4px); animation-duration: 1.3s; }
.flame .core { width: 32px; height: 46px; background: linear-gradient(var(--amber), #ffeec2); filter: blur(2px); animation-duration: 1.05s; }
@keyframes flicker { from { transform: translateX(-50%) scaleY(1) scaleX(1); } to { transform: translateX(-51%) scaleY(1.06) scaleX(0.97); } }
@media (prefers-reduced-motion: reduce) { .flame span { animation: none; } }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; margin-top: 40px; }
.card {
  background: var(--card); border: 0.5px solid var(--stroke);
  border-radius: 22px; padding: 22px;
}
.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { color: var(--text-72); font-size: 14.5px; }
.card .k { color: var(--amber); }

.price {
  margin-top: 56px; text-align: center; background: var(--card);
  border: 0.5px solid var(--stroke); border-radius: 28px; padding: 36px 24px;
}
.price .big { font-size: 30px; font-weight: 700; }
.price .big .accent { color: var(--amber); }
.price p { color: var(--text-72); margin-top: 8px; }

.store-note {
  display: inline-block; margin-top: 22px; padding: 13px 26px; border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--ember));
  color: var(--ink-on-ember); font-weight: 600; text-decoration: none; font-size: 15px;
}

article { max-width: 660px; }
article h1 { font-size: 34px; }
article h2 { font-size: 19px; color: var(--amber); }
article p, article li { color: var(--text-72); font-size: 16px; margin-bottom: 12px; }
article ul { padding-left: 22px; margin-bottom: 12px; }
article .date { color: var(--text-55); font-size: 14px; margin-bottom: 32px; }
article a { color: var(--amber); }

footer.site {
  margin-top: 72px; padding-top: 24px; border-top: 0.5px solid var(--stroke);
  color: var(--text-55); font-size: 13.5px; display: flex; gap: 18px; flex-wrap: wrap;
}
footer.site a { color: var(--text-55); }
footer.site a:hover { color: var(--amber); }
