/* Letters from Paul — parchment & ink. Reverent, warm, unhurried.
   Fraunces for the letter voice, Inter for UI chrome. Follows the device
   light/dark setting; a manual toggle overrides until the device changes. */

:root {
  --paper:   #f3efe4;
  --paper-2: #ede7d8;
  --card:    #fbf8f0;
  --ink:     #2c2621;
  --ink-soft:#5c5147;
  --faint:   #8a7d6d;
  --line:    #ddd3bf;
  --rubric:  #8a2f28;   /* deep letter-red — the seal, accents */
  --gold:    #a8863f;
  --shadow:  rgba(60, 45, 25, 0.12);
}

:root[data-theme="dark"] {
  --paper:   #17130f;
  --paper-2: #1d1813;
  --card:    #201a14;
  --ink:     #e9e1d1;
  --ink-soft:#c3b7a2;
  --faint:   #8f8271;
  --line:    #382f24;
  --rubric:  #c66a5a;
  --gold:    #c3a259;
  --shadow:  rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--paper-2), var(--paper) 60%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3.5rem) 1rem 3rem;
}

.site-note {
  max-width: 40rem;
  margin: 2.25rem auto 0;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--faint);
  font-size: .74rem;
  line-height: 1.6;
}
.site-note p { margin: 0; }
.dev-note {
  margin: 0 0 1rem !important;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.dev-note strong { color: var(--ink); }
.dev-note a { color: var(--rubric); text-decoration: none; white-space: nowrap; }
.dev-note a:hover { text-decoration: underline; }
.site-links { margin-top: .9rem !important; font-size: .74rem; }
.site-links a { color: var(--faint); text-decoration: none; }
.site-links a:hover { color: var(--rubric); }
.site-links span { color: var(--line); margin: 0 .35rem; }
.site-links .heart { color: var(--rubric); margin: 0; }
.support-link { white-space: nowrap; }

/* about page */
.prose.about { text-align: left; }
.about h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 1.9rem 0 .5rem;
}
.about .ref { color: var(--faint); font-size: .82rem; }

/* respond-to-a-devotion */
.respond-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--rubric);
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: .82rem;
  letter-spacing: .02em;
}
.respond-link:hover { text-decoration: underline; }
.respond-context { margin-bottom: 1.25rem; }
.respond-context .ref { color: var(--faint); font-size: .82rem; }

/* support / tip jar — left-aligned so the Plink embed inherits a natural layout */
.tipjar-wrap { margin: 1.9rem 0 .5rem; text-align: left; }
/* stop the site's global form styles (esp. input{width:100%}) from mangling the
   embed's checkbox/radio — that was stretching the checkbox and shoving its label
   to the far right */
.tipjar-wrap input[type="checkbox"],
.tipjar-wrap input[type="radio"] {
  width: auto;
  padding: 0;
  background: none;
  border: revert;
  box-shadow: none;
}

.theme-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: color .2s, border-color .2s;
}
.theme-toggle:hover { color: var(--rubric); border-color: var(--rubric); }

.letter {
  position: relative;
  width: 100%;
  max-width: 42rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  box-shadow: 0 1px 0 var(--shadow), 0 18px 50px -30px var(--shadow);
}

/* wax seal — stamped with a first-century ship (Acts 27) */
.seal {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  /* Fixed deep-red wax (not var(--rubric)) so the seal stays crisp + the cream ship
     keeps its contrast in BOTH light and dark — dark's coral rubric washed it out. */
  background: url("ship.svg") center / 1.7rem no-repeat,
              radial-gradient(circle at 35% 30%, #a83c33, #8a2f28 70%);
  box-shadow: 0 4px 10px -3px var(--shadow);
  font-size: 0;
}
/* the seal doubles as the share button on a devotion — restore its background
   (the generic .share-btn rule sets background:none, which was erasing it) */
.seal.share-btn {
  cursor: pointer;
  background: url("ship.svg") center / 1.7rem no-repeat,
              radial-gradient(circle at 35% 30%, #a83c33, #8a2f28 70%);
  transition: transform .15s, box-shadow .15s;
}
.seal.share-btn:hover,
.seal.share-btn:focus-visible {
  transform: translateX(-50%) scale(1.09);
  box-shadow: 0 6px 16px -4px var(--shadow);
  outline: none;
}

.masthead { text-align: center; margin-bottom: 2rem; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: .25rem 0 1rem;
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 7vw, 3rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.01em;
}
.wordmark em { font-style: italic; color: var(--rubric); }

.tagline { color: var(--ink-soft); margin: .75rem 0 0; font-size: 1rem; }

.book-position {
  margin: .5rem 0 0;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--faint);
}
.book-position .walk-book { color: var(--ink-soft); }

.prose { font-family: "Fraunces", Georgia, serif; font-size: 1.075rem; }
.prose p { margin: 0 0 1.05rem; }
.prose a { color: var(--rubric); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold); }
.prose .lede {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rubric);
}
.prose.note { text-align: left; }
.prose .hi { font-size: 1.2rem; font-weight: 500; }
.sign { color: var(--ink-soft); font-style: italic; margin-top: 1.5rem; }

/* form */
.write { margin-top: 2.25rem; border-top: 1px solid var(--line); padding-top: 1.75rem; }
.write h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 1.1rem;
}
.write label { display: block; margin-bottom: 1.1rem; }
.write label > span {
  display: block;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.hint { font-size: .78rem !important; color: var(--faint) !important; margin-top: .35rem; }
/* honeypot — off-screen; real users never see or fill it */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.opt { color: var(--faint); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* settings */
.head-links { display: flex; align-items: center; gap: 1.1rem; }
.pref { border: 1px solid var(--line); border-radius: 4px; padding: 1rem 1.1rem; margin-bottom: 1.2rem; }
.pref legend {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  padding: 0 .4rem;
  color: var(--ink-soft);
}
.radio { display: flex; align-items: flex-start; gap: .55rem; margin-bottom: .6rem; font-size: .95rem; }
.radio:last-child { margin-bottom: 0; }
.radio input { width: auto; margin-top: .25rem; background: none; }
.saved-note { color: var(--rubric); font-size: .85rem; margin: 0 0 1rem; }
.danger { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.danger-btn { color: var(--faint); font-size: .82rem; letter-spacing: .04em; }
.danger-btn:hover { background: none; color: var(--rubric); }

input, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: .7rem .8rem;
  resize: vertical;
}
textarea { font-family: "Fraunces", Georgia, serif; line-height: 1.55; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--rubric);
  box-shadow: 0 0 0 3px rgba(138, 47, 40, 0.12);
}

button {
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  background: var(--rubric);
  color: #f6f1e6;
  border: none;
  border-radius: 3px;
  padding: .7rem 1.4rem;
  letter-spacing: .02em;
  transition: background .18s, transform .05s;
}
button:hover { background: #7a2822; }
button:active { transform: translateY(1px); }

.fine { font-size: .78rem; color: var(--faint); margin-top: 1rem; }

/* homepage "daily word" front door + subscribe */
.daily {
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1.9rem;
  text-align: center;
}
.daily-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: .35rem 0 .25rem;
}
.daily .ref {
  color: var(--faint);
  font-size: .78rem;
  letter-spacing: .04em;
  margin: 0 0 .9rem;
}
.daily .teaser {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 1rem;
}
.read-today {
  display: inline-block;
  color: var(--rubric);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: 1.4rem;
}
.read-today:hover { text-decoration: underline; }
.subscribe { text-align: left; }
.subscribe label > span {
  display: block;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.subscribe input { margin-bottom: .7rem; }

/* ── devotional-first front door ─────────────────────────────────────────── */
.brand {
  text-align: center;
  margin: 0 0 1.4rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.brand a { color: var(--faint); text-decoration: none; }
.brand a:hover { color: var(--rubric); }

.devotion-full { margin-bottom: 1.25rem; }

/* share + archive link under the devotion */
.share { margin: 0 0 .5rem; display: flex; align-items: center; gap: 1rem; font-size: .85rem; }
.share-btn { background: none; color: var(--rubric); padding: 0; font-size: .85rem; letter-spacing: .02em; }
.share-btn:hover { background: none; text-decoration: underline; }
.share-done { color: var(--faint); }
.archive-link { color: var(--faint); text-decoration: none; margin-left: auto; }
.archive-link:hover { color: var(--rubric); }

.archive-list { list-style: none; margin: 0; padding: 0; }
.archive-list li { border-bottom: 1px solid var(--line); }
.archive-list a {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .85rem 0; text-decoration: none;
}
.arch-title { font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; color: var(--ink); }
.archive-list a:hover .arch-title { color: var(--rubric); }
.arch-ref { color: var(--faint); font-size: .78rem; white-space: nowrap; }

/* study "what we're thinking about" list */
.study-list {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  font-family: "Fraunces", Georgia, serif;
}
.study-list li {
  padding: .7rem 0 .7rem 1.4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
  line-height: 1.55;
}
.study-list li:before {
  content: "✚";
  position: absolute;
  left: 0;
  color: var(--rubric);
  font-size: .8rem;
  top: .85rem;
}
.study-list strong { color: var(--ink); font-weight: 600; }

/* per-reader walk: progress + next-book picker */
.walk-progress {
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.choose {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.choose .eyebrow { margin: 0 0 .5rem; }
.choose .teaser { font-family: "Fraunces", Georgia, serif; color: var(--ink-soft); margin: 0 0 1.1rem; }
.book-grid { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.book-grid form { margin: 0; }
.book-btn {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: .55rem 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: .95rem;
}
.book-btn:hover { background: var(--rubric); color: #f6f1e6; border-color: var(--rubric); }
.book-btn.chosen { background: var(--rubric); color: #f6f1e6; border-color: var(--rubric); }

/* "on deck" — quiet pre-select of the next book, on the walk page */
.on-deck {
  text-align: center;
  margin: -.5rem 0 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.on-deck > summary {
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--faint);
  padding: .25rem 0;
}
.on-deck > summary::-webkit-details-marker { display: none; }
.on-deck > summary:hover { color: var(--rubric); }
.on-deck > summary strong { color: var(--ink-soft); }
.on-deck-change { color: var(--faint); }
.on-deck-hint {
  font-size: .82rem;
  color: var(--faint);
  font-style: italic;
  margin: .5rem 0 1rem;
}
.on-deck-clear { margin: .8rem 0 0; }

/* walk: the "now" word + navigation + inline respond + book map */
.walk-progress .learn-link {
  display: inline-block;
  margin-left: .6rem;
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--rubric);
  text-decoration: none;
}
.walk-progress .learn-link:hover { text-decoration: underline; }
.word-now { margin-top: .25rem; }
.respond-inline { margin-top: 1.25rem; border-top: 1px dashed var(--line); padding-top: 1rem; }
.respond-inline > summary {
  cursor: pointer; list-style: none;
  color: var(--rubric); font-size: .92rem;
}
.respond-inline > summary::-webkit-details-marker { display: none; }
.respond-inline textarea {
  width: 100%; margin-top: .8rem; padding: .7rem .8rem;
  border: 1px solid var(--line); border-radius: 4px; background: var(--card);
  color: var(--ink); font-family: "Fraunces", Georgia, serif; font-size: 1rem; line-height: 1.5;
}
.respond-inline button { margin-top: .7rem; }
.word-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1.5rem 0 2rem; gap: 1rem;
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.word-nav .wn-mid { flex: 1; text-align: center; }
.word-nav a { color: var(--faint); text-decoration: none; font-size: .9rem; }
.word-nav a:hover { color: var(--rubric); }
.word-nav .to-now { color: var(--rubric); }

.book-map .badge {
  display: inline-block; margin-left: .4rem;
  font-size: .68rem; letter-spacing: .05em; text-transform: uppercase;
  opacity: .8;
}
.book-btn.walking-now {
  background: var(--rubric); color: #f6f1e6; border-color: var(--rubric);
  display: inline-flex; align-items: center; cursor: default;
}
.book-btn.walking-next {
  background: var(--card); color: var(--ink);
  border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold);
}
.book-btn.walking-next:hover { background: var(--paper-2); color: var(--ink); border-color: var(--gold); }

/* "go deeper" — the passage-study free preview */
.go-deeper { margin: 1rem 0 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1.25rem; }
.go-deeper a { color: var(--gold); text-decoration: none; font-size: .9rem; letter-spacing: .02em; }
.go-deeper a:hover { color: var(--rubric); text-decoration: underline; }
.go-deeper .share-btn { font-size: .9rem; letter-spacing: .02em; color: var(--gold); }
.go-deeper .share-btn:hover { color: var(--rubric); }
.go-deeper .share-done { font-size: .85rem; }
.study-preview-note {
  text-align: center; font-family: "Fraunces", Georgia, serif; font-style: italic;
  color: var(--ink-soft); margin: 0 0 1.75rem;
}
.study-sections { margin: 0 0 1.5rem; }
.study-section {
  border: 1px solid var(--line); border-radius: 4px;
  margin-bottom: .7rem; padding: .1rem .2rem;
}
.study-section > summary {
  cursor: pointer; list-style: none; padding: .8rem 1rem;
  font-family: "Fraunces", Georgia, serif; font-size: 1.08rem; color: var(--ink);
}
.study-section > summary::-webkit-details-marker { display: none; }
.study-section > summary:hover { color: var(--rubric); }
.study-section[open] > summary { color: var(--rubric); border-bottom: 1px solid var(--line); }
.study-section .note-body { padding: .9rem 1rem 1rem; }
.study-section .scripture {
  padding: 1rem 1.1rem 1.1rem;
  font-family: "Fraunces", Georgia, serif; font-size: 1.08rem; line-height: 1.7;
  color: var(--ink);
}
.study-section .scripture .vnum {
  font-size: .62em; color: var(--rubric); font-weight: 600;
  margin-right: .15em; vertical-align: .5em;
}
.study-section .scripture-src {
  margin: 1rem 0 0; font-family: "Inter", sans-serif; font-size: .72rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--faint);
}

/* the little voyage map on a book intro */
.paul-map { margin: 0 0 1.75rem; }
.paul-map svg { width: 100%; height: auto; display: block; }
.paul-map-img { width: 100%; height: auto; display: block; border-radius: 6px; border: 1px solid var(--line); }
.map-frame { fill: #e9ede9; stroke: var(--line); stroke-width: 1.5; }
.map-land { fill: #e4d7ba; stroke: #c9ba97; stroke-width: 2; stroke-linejoin: round; }
.map-grid line { stroke: #d8cfb8; stroke-width: 1; opacity: .5; }
:root[data-theme="dark"] .map-frame { fill: #141a17; }
:root[data-theme="dark"] .map-land { fill: #2c2a20; stroke: #4a4433; }
:root[data-theme="dark"] .map-grid line { stroke: #312a20; }
.map-route { fill: none; stroke: var(--rubric); stroke-width: 2.6; stroke-dasharray: 7 7; opacity: .8; }
.map-ship { fill: var(--ink-soft); stroke: var(--ink-soft); }
.pin-from { fill: none; stroke: var(--ink-soft); stroke-width: 2.5; }
.pin-to { fill: var(--rubric); }
.map-lbl {
  font-family: "Fraunces", Georgia, serif; font-size: 22px; fill: var(--ink);
  text-anchor: middle;
}
.map-lbl.to { fill: var(--rubric); font-weight: 500; }
.map-compass .cmp-ring { fill: none; stroke: var(--line); stroke-width: 1.5; }
.map-compass .cmp-needle { fill: var(--rubric); }
.map-compass .cmp-needle-s { fill: var(--faint); }
.map-compass .cmp-n { font-family: "Inter", sans-serif; font-size: 13px; fill: var(--faint); text-anchor: middle; }
.paul-map figcaption {
  text-align: center; margin-top: .6rem;
  font-family: "Fraunces", Georgia, serif; font-style: italic;
  color: var(--ink-soft); font-size: .92rem;
}
.paul-map figcaption strong { color: var(--ink); font-style: normal; }

.book-action { margin: 1.75rem 0 0; text-align: center; }
.book-status { font-family: "Fraunces", Georgia, serif; font-size: 1rem; margin: 0 0 .6rem; }
.book-status.now { color: var(--rubric); }
.book-status.next { color: var(--gold); }

.study-hook {
  margin: 2rem 0 0; padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold); background: var(--paper);
  font-size: .95rem; color: var(--ink-soft); font-style: italic;
}
.study-hook a { color: var(--rubric); }

/* roadmap */
.road-books { list-style: none; padding: 0; margin: .6rem 0 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.road-books li {
  border: 1px solid var(--line); border-radius: 3px; padding: .35rem .7rem;
  font-family: "Fraunces", Georgia, serif; font-size: .95rem; color: var(--ink);
}
.road-books.coming li { color: var(--faint); border-style: dashed; }
.road-books li a { color: var(--ink); text-decoration: none; }
.road-books li a:hover { color: var(--rubric); }
.road-books li:has(.road-badge.now) { border-color: var(--rubric); }
.road-books li:has(.road-badge.next) { border-color: var(--gold); }
.road-badge {
  font-family: "Inter", system-ui, sans-serif; font-size: .55rem; text-transform: uppercase;
  letter-spacing: .1em; margin-left: .4rem;
}
.road-badge.now { color: var(--rubric); }
.road-badge.next { color: var(--gold); }
.road-tag {
  font-family: "Inter", system-ui, sans-serif; font-size: .58rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--rubric); margin-left: .35rem;
}
.road-series { list-style: none; padding: 0; margin: .6rem 0 1rem; }
.road-series li { padding: .65rem 0; border-bottom: 1px solid var(--line); line-height: 1.55; color: var(--ink-soft); }
.road-series strong { color: var(--ink); }

/* PRIMARY: the subscribe panel stands out (boxed) */
.callout {
  margin: 1.4rem 0;
  padding: .85rem 1.1rem;
  border-left: 3px solid var(--rubric);
  background: var(--paper);
  border-radius: 0 4px 4px 0;
  text-align: left;
}
.callout p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.callout strong { color: var(--ink); }

.subscribe-panel {
  margin-top: 2rem;
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  text-align: center;
}
.subscribe-panel .eyebrow { margin: 0 0 .5rem; }
/* the journey — the fuller picture on the landing page */
.journey {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.journey-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 1.75rem;
}
.journey-steps { display: flex; flex-direction: column; gap: 1.75rem; text-align: left; }
.journey-step { position: relative; padding-left: 3rem; }
.journey-num {
  position: absolute; left: 0; top: -.15rem;
  font-family: "Fraunces", Georgia, serif; font-style: italic;
  font-size: 1.4rem; color: var(--gold);
}
.journey-step h3 {
  font-family: "Fraunces", Georgia, serif; font-weight: 500; font-size: 1.15rem;
  margin: 0 0 .35rem; color: var(--ink);
}
.journey-step p { margin: 0; color: var(--ink-soft); font-size: .98rem; line-height: 1.55; }
.journey-foot {
  margin: 2rem 0 0; font-family: "Fraunces", Georgia, serif; font-style: italic;
  color: var(--faint); font-size: .95rem;
}
@media (min-width: 720px) {
  .journey-steps { flex-direction: row; gap: 1.4rem; }
  .journey-step { flex: 1; padding-left: 0; padding-top: 2.2rem; }
  .journey-num { top: 0; }
}

.already { margin: 1rem 0 0; font-size: .85rem; color: var(--faint); }
.already a { color: var(--rubric); text-decoration: none; }
.already a:hover { text-decoration: underline; }
.subscribe-panel .teaser {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
}
.subscribe-panel .subscribe { text-align: left; max-width: 24rem; margin: 0 auto; }

/* SECONDARY: the correspondence doors — quiet text links */
.doors { margin-top: 1.9rem; text-align: center; }
.door {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.door a { color: var(--rubric); text-decoration: none; }
.door a:hover { text-decoration: underline; }
.door-note { font-size: .84rem; color: var(--faint); }
.door.muted { font-size: .9rem; }
.door.muted a { color: var(--faint); }
.door.muted a:hover { color: var(--rubric); }
.error {
  background: rgba(138, 47, 40, .08);
  border: 1px solid rgba(138, 47, 40, .3);
  color: var(--rubric);
  padding: .55rem .75rem;
  border-radius: 3px;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.again {
  display: inline-block;
  margin-top: 1.75rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .9rem;
}
.again:hover { color: var(--rubric); }

/* thread */
.thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.thread-head .eyebrow { margin: 0; }
.signout { margin: 0; }
.linkbtn {
  background: none;
  color: var(--faint);
  padding: 0;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.linkbtn:hover { background: none; color: var(--rubric); }

/* two-tab nav: Letters | Devotions */
.tabs {
  display: flex;
  gap: .3rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.tabs a {
  padding: .5rem .9rem;
  margin-bottom: -1px;
  text-decoration: none;
  color: var(--faint);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.tabs a:hover { color: var(--ink-soft); }
.tabs a.active { color: var(--rubric); border-bottom-color: var(--rubric); }
.tabs .dot {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--rubric);
  display: inline-block;
}

.dev-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: .15rem 0 .8rem;
}

.letters { display: flex; flex-direction: column; gap: 1.5rem; }

.note-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
}
.note-card.from-paul {
  background: var(--card);
  border-left: 3px solid var(--rubric);
}
.note-card.from-you {
  background: transparent;
  border-style: dashed;
}
.note-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: .55rem;
}
.from-paul .note-meta .who { color: var(--rubric); }
.note-meta .when {
  text-transform: none;
  letter-spacing: .01em;
  font-size: .72rem;
  color: var(--faint);
}
.badge-new {
  margin-left: auto;
  background: var(--rubric);
  color: #f6f1e6;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .58rem;
  padding: .12rem .45rem;
  border-radius: 3px;
}
.note-body {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  word-wrap: break-word;
}
/* Paul's letters render markdown -> real paragraphs & emphasis */
.note-body p { margin: 0 0 0.9em; }
.note-body p:last-child { margin-bottom: 0; }
.note-body em { font-style: italic; }
.note-body strong { font-weight: 600; }
.note-body blockquote {
  margin: 0 0 0.9em;
  padding-left: 0.9rem;
  border-left: 2px solid var(--line);
  color: var(--ink-soft);
  font-style: italic;
}
/* the reader's own letters stay verbatim plain text */
.note-body.plain { white-space: pre-wrap; }

/* crisis resource footer — out of Paul's voice, clearly set apart */
.help {
  margin-top: 1.1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-2);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .86rem;
  color: var(--ink-soft);
}
.help-intro { margin: 0 0 .55rem; }
.help ul { margin: 0; padding-left: 1.1rem; }
.help li { margin: .2rem 0; }
.help strong { color: var(--rubric); }
/* immediate (jumps the cadence) — a touch more present than the footer variant */
.help.urgent { margin: 1.5rem 0; border-left: 3px solid var(--rubric); }
.help-note { margin: .6rem 0 0; color: var(--ink-soft); }

.awaiting {
  text-align: center;
  color: var(--faint);
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
  margin: 1.5rem 0 .5rem;
}

.reply { margin: 0 0 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.reply textarea { margin-bottom: .9rem; }
.empty { color: var(--faint); text-align: center; font-style: italic; }
