:root {
  --ink: #1a1b1a;
  --ink-soft: #3f413e;
  --ink-mute: #6e716b;
  --paper: #fbfaf6;
  --panel: #fff;
  --line: #e3e1d8;
  --hi-vis: #f4c20d;
  --hi-vis-deep: #d9a400;
  --safety: #e8541e;
  --steel: #2c3540;
  --ok: #2f7d46;
  --grey-bar: #efede4;
  --content-width: 760px;
  --body-line-height: 1.6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: var(--body-line-height);
  -webkit-font-smoothing: antialiased;
}

.page-story {
  --ink-soft: #393b38;
  --content-width: 680px;
  --body-line-height: 1.68;
}

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  display: block;
  max-width: 100%;
}

.pub-bar {
  background: var(--steel);
  color: #fff;
}

.pub-bar .wrap,
.disclosure-strip .wrap,
.foot .wrap {
  max-width: 760px;
}

.pub-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}

.pub-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.pub-logo .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--hi-vis);
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.pub-nav {
  display: flex;
  gap: 20px;
  color: #b9c0c7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pub-nav a {
  color: #b9c0c7;
  text-decoration: none;
}

.disclosure-strip {
  border-bottom: 1px solid var(--line);
  background: var(--grey-bar);
}

.disclosure-strip .wrap {
  padding: 9px 20px;
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.01em;
  text-align: center;
}

.foot {
  margin-top: 20px;
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
}

.foot .wrap {
  color: var(--ink-mute);
  font-size: 12px;
  line-height: 1.7;
}

.foot .disc {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--grey-bar);
  color: var(--ink-mute);
  font-size: 12px;
}

.foot a {
  color: var(--ink-mute);
  text-decoration: underline;
}

.foot .flinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.sticky {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}

.sticky .sinfo {
  flex: 1;
  min-width: 0;
}

.sticky .sinfo b {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.sticky .sinfo span {
  color: var(--ink-mute);
  font-size: 12px;
}

.sticky .cta {
  width: auto;
  padding: 13px 20px;
  font-size: 15px;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .pub-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  .sticky {
    display: flex;
  }
}
