:root {
  --bg: #0c0708;
  --bg-2: #1a0a0e;
  --burgundy: #5c1218;
  --cream: #f0e6d0;
  --cream-dim: #c4b79a;
  --gold: #c9a227;
  --line: rgba(240, 230, 208, 0.12);
}

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

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--cream);
  font-family: "Noto Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
}

body {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(92, 18, 24, 0.55), transparent 60%),
    radial-gradient(800px 500px at 80% 110%, rgba(92, 18, 24, 0.25), transparent 50%),
    var(--bg);
}

.wrap {
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 2.4rem 1.25rem 3rem;
}

.hero {
  text-align: center;
  margin-bottom: 1.8rem;
}

.mark {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.15rem;
  box-shadow: 0 0 0 3px #111, 0 0 0 4px var(--gold);
}

h1 {
  font-stretch: 62.5%;
  font-weight: 800;
  font-size: clamp(1.8rem, 8vw, 2.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
}

.tag {
  margin-top: 0.45rem;
  color: var(--gold);
  font-stretch: 75%;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.hook {
  margin: 1rem auto 0;
  max-width: 22em;
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.45;
}

.links {
  display: grid;
  gap: 0.65rem;
}

.btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 3.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  text-decoration: none;
}

.btn.primary {
  background: var(--burgundy);
  border-color: transparent;
}

.btn.ghost {
  justify-content: center;
  min-height: 2.8rem;
  margin-top: 0.9rem;
  font-stretch: 75%;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn:active { transform: translateY(1px); }

.ico {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  opacity: 0.95;
}
.ico svg { display: block; width: 100%; height: 100%; }

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.btn-text strong {
  font-stretch: 75%;
  font-weight: 600;
  font-size: 1.02rem;
}
.btn-text em {
  font-style: normal;
  color: var(--cream-dim);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.ep {
  margin-top: 1.8rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(92, 18, 24, 0.28), rgba(0, 0, 0, 0.15));
}

.kicker {
  color: var(--gold);
  font-stretch: 75%;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ep h2 {
  margin: 0.35rem 0 0.45rem;
  font-stretch: 75%;
  font-weight: 700;
  font-size: 1.25rem;
}

.ep p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  line-height: 1.4;
}

.rss {
  margin-top: 1.3rem;
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.82rem;
}
.rss a { color: var(--cream); }

footer {
  margin-top: 2.2rem;
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
footer a { color: var(--cream-dim); }
