/* CALL SAL blog  -  lime, black, Syne + Inter. No glass. No purple. */
:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #c8c8c8;
  --lime: #CCFF00;
  --rule: #222222;
  --max: 40rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  text-align: left;
}

a {
  color: var(--lime);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #eaff80;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  text-align: left;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.15rem 0 1.05rem;
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.brand {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--lime);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: baseline;
}

.nav a {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav a.book {
  background: var(--lime);
  color: #000;
  padding: 0.45rem 0.75rem;
}

.nav a.book:hover {
  color: #000;
  background: #e6ff4d;
}

.nav a.secondary {
  color: var(--muted);
}

.nav a.secondary:hover {
  color: var(--lime);
}

.kicker {
  margin: 0 0 0.65rem;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}

h1,
h2 {
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: left;
}

h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

h2 {
  margin: 2.1rem 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

.lede,
.meta {
  color: var(--muted);
}

.meta {
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
}

main {
  padding: 2.4rem 0 3.4rem;
}

article p,
.notes p {
  margin: 0 0 1.05rem;
}

article p:last-child,
.notes p:last-child {
  margin-bottom: 0;
}

.post-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.post-list li {
  border-top: 1px solid var(--rule);
  padding: 1.15rem 0 1.2rem;
}

.post-list a.title {
  display: inline-block;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--text);
  text-decoration: none;
}

.post-list a.title:hover {
  color: var(--lime);
}

.post-list .blurb {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.more {
  margin: 2.4rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}

.more h2 {
  margin-top: 0;
}

.more ul {
  margin: 0;
  padding-left: 1.15rem;
}

.more li {
  margin: 0.4rem 0;
}

.cta {
  margin: 2.6rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--rule);
}

.cta p {
  margin: 0 0 1rem;
}

.cta .button {
  display: inline-block;
  background: var(--lime);
  color: #000;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1rem;
}

.cta .button:hover {
  background: #e6ff4d;
  color: #000;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--lime);
}
