:root{
  --bg:#f6f1eb;
  --panel:#ffffff;
  --ink:#1f1c19;
  --muted:#6d645c;
  --accent:#b07a4a;
  --line:#e6ddd2;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family: "Inter", system-ui, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.75;
  padding:60px 24px;
}

.container{
  max-width:920px;
  margin:auto;
}

/* Header */
.header{
  margin-bottom:64px;
}

.header h1{
  font-size:2.7rem;
  font-weight:600;
  letter-spacing:-0.4px;
  margin-bottom:18px;
}

.header p{
  color:var(--muted);
  max-width:720px;
}

/* Narrative stream */
.stream{
  border-left:2px solid var(--line);
  padding-left:40px;
  display:flex;
  flex-direction:column;
  gap:36px;
}

/* Content block */
.entry{
  background:var(--panel);
  padding:28px 32px;
  border-radius:10px;
  position:relative;
}

.entry::before{
  content:"";
  position:absolute;
  left:-49px;
  top:28px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--accent);
}

.entry p{
  color:#2b2621;
}

/* Anchor */
a{
  color:var(--accent);
  text-decoration:none;
  border-bottom:1px solid var(--accent);
  transition:color .2s ease, border-color .2s ease;
}

a:hover{
  color:#7a4f2d;
  border-color:#7a4f2d;
}

/* Footer */
.footer{
  margin-top:72px;
  text-align:center;
  color:var(--muted);
  font-size:0.9rem;
}

/* Responsive */
@media(max-width:640px){
  .header h1{
    font-size:2.1rem;
  }
  .stream{
    padding-left:28px;
  }
  .entry::before{
    left:-37px;
  }
}
