/* TheirCall — Journal shared stylesheet.
   Base tokens, body, nav and footer are replicated verbatim from index.html
   so journal pages match the rest of the site exactly. The .essay rules below
   are the only journal-specific additions, built from the same design tokens. */

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

:root {

  --cream: #FAF7F2;

  --warm-white: #FFFDF9;

  --ink: #1C1814;

  --ink-mid: #3D3530;

  --ink-soft: #6B5F58;

  --ink-muted: #9C8E87;

  --rust: #B8490A;

  --rust-light: #F5EAE2;

  --rust-dark: #8A3507;

  --sage: #4A6741;

  --sage-light: #EDF2EB;

  --border: rgba(60,40,25,0.12);

  --border-mid: rgba(60,40,25,0.2);

  --serif: 'Playfair Display', Georgia, serif;

  --body: 'Source Serif 4', Georgia, serif;

}

html { scroll-behavior: smooth; }

body {

  font-family: var(--body);

  background-color: var(--cream);

  color: var(--ink);

  font-size: 18px;

  line-height: 1.75;

  font-weight: 300;

  -webkit-font-smoothing: antialiased;

}

/* ── NAV ── */

nav {

  position: fixed;

  top: 0; left: 0; right: 0;

  z-index: 100;

  background: rgba(250,247,242,0.92);

  backdrop-filter: blur(8px);

  border-bottom: 1px solid var(--border);

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 2rem;

  height: 64px;

}

.nav-logo {

  font-family: var(--serif);

  font-size: 1.25rem;

  font-weight: 500;

  color: var(--ink);

  letter-spacing: -0.02em;

  text-decoration: none;

}

.nav-logo span {

  color: var(--rust);

}

.nav-cta {

  background: var(--ink);

  color: var(--cream);

  font-family: var(--body);

  font-size: 0.875rem;

  font-weight: 400;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  padding: 0.5rem 1.25rem;

  border: none;

  cursor: pointer;

  text-decoration: none;

  transition: background 0.2s;

}

.nav-cta:hover { background: var(--rust); }

/* ── FOOTER ── */

footer {

  background: var(--ink);

  color: rgba(250,247,242,0.45);

  padding: 2.5rem 2rem;

  text-align: center;

  font-size: 0.8rem;

  letter-spacing: 0.04em;

}

footer a {

  color: rgba(250,247,242,0.45);

  text-decoration: none;

}

footer a:hover { color: var(--cream); }

.footer-logo {

  font-family: var(--serif);

  font-size: 1rem;

  color: rgba(250,247,242,0.7);

  margin-bottom: 0.5rem;

}

/* ── ESSAY (journal long-form) ── */

.essay {

  max-width: 680px;

  margin: 0 auto;

  padding: clamp(6rem, 9vw, 8rem) 1.5rem 5rem;

}

.essay-eyebrow {

  font-family: var(--body);

  font-size: 0.75rem;

  font-weight: 400;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: var(--rust);

  margin-bottom: 1.5rem;

}

.essay-eyebrow a {

  color: var(--rust);

  text-decoration: none;

}

.essay-eyebrow a:hover { color: var(--rust-dark); }

.essay h1 {

  font-family: var(--serif);

  font-size: clamp(2rem, 4vw, 2.75rem);

  font-weight: 500;

  line-height: 1.15;

  letter-spacing: -0.02em;

  color: var(--ink);

  margin-bottom: 2rem;

}

.essay h2 {

  font-family: var(--serif);

  font-size: 1.5rem;

  font-weight: 500;

  line-height: 1.25;

  color: var(--ink);

  margin-top: 2.5rem;

  margin-bottom: 0.75rem;

}

.essay p {

  font-family: var(--body);

  font-size: 1.125rem;

  line-height: 1.75;

  color: var(--ink-mid);

  margin-bottom: 1.4rem;

}

.essay a {

  color: var(--rust);

  text-decoration: underline;

}

.essay a:hover { color: var(--rust-dark); }

.essay ul {

  margin: 0 0 1.4rem;

  padding-left: 1.5rem;

}

.essay li {

  font-family: var(--body);

  font-size: 1.125rem;

  line-height: 1.75;

  color: var(--ink-mid);

  margin-bottom: 0.5rem;

}

hr.essay-divider {

  border: none;

  width: 4rem;

  height: 1px;

  background: var(--border);

  margin: 3rem auto;

}

.essay-byline {

  font-size: 1rem;

  line-height: 1.7;

  color: var(--ink-soft);

  margin-top: 3rem;

  padding-top: 2rem;

  border-top: 1px solid var(--border);

}

.essay-sources {

  font-size: 0.875rem;

  font-style: italic;

  line-height: 1.7;

  color: var(--ink-muted);

  margin-top: 1.5rem;

}

/* ── ESSAY CHECKLIST (the long-distance checklist essay) ── */

.essay ul.essay-checklist {

  list-style: none;

  margin: 0 0 1.4rem;

  padding-left: 0;

}

.essay ul.essay-checklist li {

  position: relative;

  padding-left: 1.75rem;

  margin-bottom: 0.6rem;

}

.essay ul.essay-checklist li::before {

  content: '\2713';

  position: absolute;

  left: 0;

  top: 0;

  color: var(--rust);

}

/* ── JOURNAL INDEX (the /journal/ listing) ── */

.essay-index {

  list-style: none;

  margin: 0 0 1rem;

  padding: 0;

}

.essay-index li {

  margin-bottom: 1.75rem;

}

.essay .essay-index-title {

  font-family: var(--serif);

  font-size: 1.2rem;

  font-weight: 500;

  line-height: 1.3;

  letter-spacing: -0.01em;

  color: var(--ink);

  text-decoration: none;

}

.essay .essay-index-title:hover { color: var(--rust); }

.essay .essay-index-teaser {

  font-size: 1rem;

  line-height: 1.6;

  color: var(--ink-soft);

  margin-top: 0.25rem;

  margin-bottom: 0;

}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {

  nav { padding: 0 1.25rem; }

}
