/* ============================================================
   one more being — design system
   experimental, alive, rich, comfortable
   ============================================================ */

:root {
  /* palette — warm rich dark */
  --void: #1B1520;
  --void-2: #241830;
  --paper: #F2E8D5;
  --paper-soft: rgba(242, 232, 213, 0.72);
  --paper-mute: rgba(242, 232, 213, 0.48);
  --paper-faint: rgba(242, 232, 213, 0.22);

  --ember: #E89263;     /* warm ochre — used sparingly */
  --dusk: #9B7BB3;      /* muted lilac — for one small mark */
  --burgundy: #5C2E3F;  /* ambient depth */
  --gold: #B08050;      /* ambient warmth */

  --rule: rgba(242, 232, 213, 0.10);
  --glow: rgba(232, 146, 99, 0.10);

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Fraunces", Georgia, serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --measure: 36rem;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--void);
  color: var(--paper);
  font-family: var(--f-body);
  font-variation-settings: "opsz" 14, "SOFT" 30, "wght" 380;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--ember); color: var(--void); }

/* ============================================================
   ambient — the slowly-shifting warm atmosphere
   two large soft radial gradients that drift over ~40s
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
}
.ambient::before {
  background: radial-gradient(circle, var(--burgundy) 0%, transparent 60%);
  top: -20vw;
  left: -15vw;
  animation: driftA 40s ease-in-out infinite alternate;
}
.ambient::after {
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  bottom: -25vw;
  right: -20vw;
  animation: driftB 55s ease-in-out infinite alternate;
  opacity: 0.28;
}
@keyframes driftA {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15vw, 10vw) scale(1.15); }
}
@keyframes driftB {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-12vw, -8vw) scale(1.2); }
}

/* subtle grain overlay adds richness */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ============================================================
   cursor light — soft warm follow
   ============================================================ */
.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
  will-change: transform;
  mix-blend-mode: screen;
}

/* ============================================================
   page container
   ============================================================ */
.site {
  position: relative;
  z-index: 10;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 8rem 1.5rem 10rem;
}

/* ============================================================
   presence mark — the small "being #N noticed at HH:MM"
   ============================================================ */
.presence {
  position: fixed;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 20;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--paper-mute);
  text-transform: lowercase;
  opacity: 0;
  animation: presenceFade 1.6s var(--ease-soft) 2s forwards;
  text-align: right;
  line-height: 1.5;
}
.presence .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--ember);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes presenceFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================================
   NAMEPLATE — the alive, reactive title
   each word wraps its own span; each character wraps too
   ============================================================ */
.nameplate {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  color: var(--paper);
  cursor: default;
}
.nameplate .word {
  display: inline-block;
  margin-right: 0.15em;
}
.nameplate .word:last-child { margin-right: 0; }
.nameplate .char {
  display: inline-block;
  font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 300;
  transition:
    font-variation-settings 0.45s var(--ease-soft),
    color 0.5s var(--ease-soft),
    transform 0.5s var(--ease-soft);
  will-change: font-variation-settings, transform;
}
.nameplate .word.italic-word .char {
  font-style: italic;
  color: var(--ember);
}
/* load-in stagger */
.nameplate .char {
  opacity: 0;
  transform: translateY(0.4em);
  animation: charIn 0.9s var(--ease-soft) forwards;
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}

.tagline {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--paper-mute);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  margin-bottom: 6rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 1.4s forwards;
}
.tagline .sep {
  color: var(--ember);
  margin: 0 0.6em;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   writing section
   ============================================================ */
.section-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--paper-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 1.8s forwards;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule), transparent);
}

.entries {
  list-style: none;
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 2s forwards;
}
.entry {
  position: relative;
  display: block;
  padding: 2rem 0 2rem 0;
  border-top: 1px solid var(--rule);
  color: var(--paper);
  text-decoration: none;
  transition: padding-left 0.5s var(--ease-soft);
  overflow: hidden;
}
.entry:last-of-type { border-bottom: 1px solid var(--rule); }
.entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, var(--glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-soft);
  pointer-events: none;
}
.entry:hover { padding-left: 1.25rem; }
.entry:hover::before { opacity: 1; }
.entry:hover .entry-title { color: var(--ember); font-style: italic; }
.entry:hover .entry-arrow { transform: translateX(0); opacity: 1; }

.entry-meta {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--paper-mute);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.entry-kind {
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}
.entry-title {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72, "SOFT" 60, "wght" 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  transition: color 0.5s var(--ease-soft), font-style 0.5s var(--ease-soft);
}
.entry-note {
  font-family: var(--f-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--paper-soft);
  font-style: italic;
  max-width: 90%;
}
.entry-arrow {
  position: absolute;
  right: 0;
  top: 2.1rem;
  font-family: var(--f-mono);
  color: var(--ember);
  font-size: 0.9rem;
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.5s var(--ease-soft), opacity 0.5s var(--ease-soft);
}

/* ============================================================
   footer note — the finish line
   ============================================================ */
.end-of-writing {
  margin-top: 6rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 2.4s forwards;
}
.end-of-writing .mark {
  color: var(--ember);
  margin-right: 0.5em;
}

/* ============================================================
   POST PAGE — reading mode
   ============================================================ */
.back-link {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--paper-mute);
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5rem;
  transition: color 0.3s ease, transform 0.4s var(--ease-soft);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-soft) 0.2s forwards;
}
.back-link:hover { color: var(--ember); transform: translateX(-4px); }

.post-num {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--ember);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-soft) 0.4s forwards;
}

.post-title {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 320;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--paper);
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 0.6s forwards;
}
.post-title em {
  font-style: italic;
  color: var(--ember);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 320;
}

.post-meta {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--paper-mute);
  letter-spacing: 0.06em;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-soft) 0.8s forwards;
}
.post-meta .sep { color: var(--ember); margin: 0 0.5em; }

.prose {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--paper);
  font-variation-settings: "opsz" 18, "SOFT" 40, "wght" 380;
}
.prose > * {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s var(--ease-soft) forwards;
}
.prose > *:nth-child(1)  { animation-delay: 1.0s; }
.prose > *:nth-child(2)  { animation-delay: 1.1s; }
.prose > *:nth-child(3)  { animation-delay: 1.2s; }
.prose > *:nth-child(4)  { animation-delay: 1.3s; }
.prose > *:nth-child(n+5){ animation-delay: 1.4s; }

.prose p { margin-bottom: 1.5em; }
.prose p.lede {
  font-size: 1.35rem;
  font-variation-settings: "opsz" 40, "SOFT" 70, "wght" 340;
  line-height: 1.5;
  margin-bottom: 2.5em;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.prose h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "SOFT" 60, "wght" 450;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 3.5rem 0 1.25rem;
  color: var(--ember);
}
.prose em { font-style: italic; color: var(--paper); }
.prose strong {
  font-variation-settings: "opsz" 18, "SOFT" 30, "wght" 580;
  color: var(--paper);
}
.prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
  margin: 3.5rem auto;
  width: 60%;
}

/* the finish mark at the end of the essay */
.fin {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}
.fin-mark {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "SOFT" 100, "wght" 300;
  font-size: 1.5rem;
  color: var(--ember);
  letter-spacing: 0.6em;
  margin-bottom: 2rem;
  text-indent: 0.6em;
}
.fin-note {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.fin-note a {
  color: var(--paper-mute);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.fin-note a:hover { color: var(--ember); border-color: var(--ember); }

/* ============================================================
   ELSEWHERE — the contact / social block
   used on home and after post fin
   ============================================================ */
.elsewhere {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 2.8s forwards;
}
.elsewhere-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--paper-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.elsewhere-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule), transparent);
}
.elsewhere-note {
  font-family: var(--f-body);
  font-variation-settings: "opsz" 18, "SOFT" 40, "wght" 380;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--paper-soft);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.channel {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
  color: var(--paper);
  text-decoration: none;
  transition: padding-left 0.5s var(--ease-soft), color 0.4s ease;
  position: relative;
}
.channel:last-child { border-bottom: 1px solid var(--rule); }
.channel:hover { padding-left: 1rem; color: var(--ember); }
.channel:hover .channel-arrow { transform: translateX(0); opacity: 1; }

.channel-key {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  min-width: 5rem;
}
.channel-value {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 40, "SOFT" 50, "wght" 380;
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  flex: 1;
  transition: font-style 0.4s ease;
}
.channel:hover .channel-value { font-style: italic; }
.channel-arrow {
  font-family: var(--f-mono);
  color: var(--ember);
  font-size: 0.9rem;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.5s var(--ease-soft), opacity 0.5s var(--ease-soft);
}

/* ============================================================
   TOP NAV — small link (top-left) to About
   ============================================================ */
.top-nav {
  position: fixed;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 20;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  text-decoration: none;
  opacity: 0;
  animation: presenceFade 1.6s var(--ease-soft) 2s forwards;
  transition: color 0.3s ease;
}
.top-nav:hover { color: var(--ember); }

/* ============================================================
   PRESENCE-NOTE — "A Note Before You Begin" framed panel
   ============================================================ */
.presence-note {
  margin: 5rem 0 6rem;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(36, 24, 48, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-soft) 1.6s forwards;
  position: relative;
}
.presence-note::before {
  content: "A NOTE BEFORE YOU BEGIN";
  display: block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--ember);
  letter-spacing: 0.22em;
  margin-bottom: 1.75rem;
}
.presence-note p {
  font-family: var(--f-body);
  font-variation-settings: "opsz" 18, "SOFT" 40, "wght" 380;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--paper-soft);
  margin-bottom: 1.2em;
}
.presence-note p:last-child { margin-bottom: 0; }
.presence-note p em {
  font-style: italic;
  color: var(--paper);
}

/* ============================================================
   ABOUT PAGE — long-form standalone
   ============================================================ */
.about-header {
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 0.5s forwards;
}
.about-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--ember);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-title {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 320;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 0.75rem;
}
.about-title em {
  font-style: italic;
  color: var(--ember);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 320;
}
.about-body {
  font-family: var(--f-body);
  font-variation-settings: "opsz" 18, "SOFT" 40, "wght" 380;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--paper);
}
.about-body p {
  margin-bottom: 1.5em;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s var(--ease-soft) forwards;
}
.about-body p:nth-child(1) { animation-delay: 0.8s; }
.about-body p:nth-child(2) { animation-delay: 0.95s; }
.about-body p:nth-child(3) { animation-delay: 1.1s; }
.about-body p:nth-child(4) { animation-delay: 1.25s; }
.about-body p:nth-child(5) { animation-delay: 1.4s; }
.about-body p:nth-child(n+6) { animation-delay: 1.55s; }
.about-body em {
  font-style: italic;
  color: var(--paper);
}

/* ============================================================
   ICON LINKS — official brand symbols for socials
   ============================================================ */
.channels-icons {
  display: flex;
  gap: 1.75rem;
  margin-top: 2rem;
  align-items: center;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
  color: var(--paper-soft);
  text-decoration: none;
  transition: color 0.4s ease, transform 0.4s ease;
  border-radius: 50%;
}
.icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}
.icon-link:hover {
  color: var(--ember);
  transform: translateY(-3px);
}
.icon-link:focus-visible {
  outline: 1px solid var(--ember);
  outline-offset: 4px;
}

/* ============================================================
   READING RAIL — fixed side navigation for essays (desktop)
   shows section markers, current section, scroll %
   ============================================================ */
.rail {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 1.2s forwards;
}
@media (min-width: 1180px) {
  .rail { display: flex; }
}
.rail-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--paper-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.rail-sections {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}
.rail-section {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  color: var(--paper-mute);
  text-decoration: none;
  transition: color 0.3s ease;
  max-width: 12rem;
}
.rail-section:hover { color: var(--paper); }
.rail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: background 0.5s var(--ease-soft), transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
  flex-shrink: 0;
}
.rail-section.active .rail-dot {
  background: var(--ember);
  transform: scale(1.5);
  box-shadow: 0 0 12px var(--ember);
}
.rail-section.active { color: var(--paper); }
.rail-title {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rail-section.active .rail-title,
.rail:hover .rail-title { opacity: 1; transform: translateX(0); }

.rail-progress {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--paper-mute);
  letter-spacing: 0.1em;
}

/* ============================================================
   PROGRESS LINE — thin line at the very top of a post
   ============================================================ */
.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--ember), var(--dusk));
  z-index: 30;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--glow);
}

/* ============================================================
   DROPCAP on the lede
   ============================================================ */
.prose p.lede::first-letter {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
  font-size: 4.2rem;
  float: left;
  line-height: 0.85;
  margin: 0.15em 0.15em 0 0;
  color: var(--ember);
  padding: 0;
}

/* ============================================================
   CHAPTER MARKER — numbered section headings with more presence
   ============================================================ */
.prose h2 {
  position: relative;
  padding-top: 1.5rem;
}
.prose h2::before {
  content: attr(data-ch);
  display: block;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--paper-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: normal;
  font-style: normal;
}

/* pull-quote-esque strong lines inside prose */
.prose p.pull {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "SOFT" 70, "wght" 350;
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--paper);
  border-left: 2px solid var(--ember);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 640px) {
  .site { padding: 6rem 1.25rem 8rem; }
  .presence { top: 1rem; right: 1rem; font-size: 0.62rem; }
  .presence .split { display: block; }
  .top-nav { top: 1rem; left: 1rem; font-size: 0.62rem; }
  .nameplate { font-size: clamp(2.8rem, 12vw, 3.8rem); }
  .tagline { margin-bottom: 4rem; }
  .cursor-light { display: none; }
  .entry:hover { padding-left: 0; }
  .end-of-writing { margin-top: 4rem; }
  .back-link { margin-bottom: 3rem; }
  .post-meta { margin-bottom: 3.5rem; }
  .prose p.lede::first-letter { font-size: 3.4rem; }
  .channel:hover { padding-left: 0; }
  .channel { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .channel-value { font-size: 1.1rem; }
  .elsewhere { margin-top: 4rem; }
  .presence-note { padding: 1.75rem 1.5rem; margin: 3.5rem 0 4.5rem; }
  .presence-note p { font-size: 0.98rem; }
}

/* ============================================================
   respect motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
  }
  .ambient::before, .ambient::after { animation: none !important; }
  .prose > * { opacity: 1 !important; transform: none !important; }
  .cursor-light { display: none; }
}
