:root {
  --bg: #090706;
  --text: #e8ded6;
  --muted: #a39389;
  --dim: #6e625b;
  --accent: #c47d4f;
  --accent-soft: #9f8554;
  --line: rgba(232, 222, 214, 0.11);
  --line-soft: rgba(232, 222, 214, 0.06);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(196, 125, 79, 0.08), transparent 28rem),
    radial-gradient(circle at 100% 42%, rgba(159, 133, 84, 0.045), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 24rem),
    var(--bg);
}

a {
  color: inherit;
}

.page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

header {
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

main {
  display: grid;
}

.note {
  position: relative;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line-soft);
}

.note:first-child {
  padding-top: 0;
}

.time-gap {
  justify-self: center;
  margin: 28px 0 2px;
  padding: 5px 10px;
  border: 1px solid rgba(196, 125, 79, 0.32);
  border-radius: 999px;
  color: var(--accent-soft);
  background: rgba(196, 125, 79, 0.07);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 34px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.7;
}

.note:first-child::before {
  top: 6px;
}

.note-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.note-location {
  color: var(--accent-soft);
}

.note-text {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.32rem, 3vw, 1.86rem);
  line-height: 1.48;
  letter-spacing: -0.018em;
}

footer {
  margin-top: 42px;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 28px, 820px);
    padding-top: 42px;
  }

  .note::before {
    left: -12px;
  }
}
